mirror of
https://github.com/fmhy/edit.git
synced 2026-02-19 01:31:41 +11:00
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
//https://nitro.unjs.io/config
|
|
export default defineNitroConfig({
|
|
runtimeConfig: {
|
|
WEBHOOK_URL: process.env.WEBHOOK_URL,
|
|
},
|
|
srcDir: ".vitepress",
|
|
routeRules: {
|
|
"/": { cors: false },
|
|
},
|
|
});
|