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