mirror of
https://github.com/fmhy/edit.git
synced 2026-02-19 01:31:41 +11:00
16 lines
335 B
TypeScript
16 lines
335 B
TypeScript
//https://nitro.unjs.io/config
|
|
export default defineNitroConfig({
|
|
runtimeConfig: {
|
|
WEBHOOK_URL: process.env.WEBHOOK_URL,
|
|
},
|
|
srcDir: ".vitepress",
|
|
routeRules: {
|
|
"/": {
|
|
cors: true,
|
|
headers: {
|
|
"Access-Control-Allow-Origin": "*",
|
|
"Access-Control-Allow-Methods": "POST",
|
|
},
|
|
},
|
|
},
|
|
});
|