mirror of
https://github.com/fmhy/edit.git
synced 2025-07-29 23:32:17 +10:00
12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
//https://nitro.unjs.io/config
|
|
export default defineNitroConfig({
|
|
runtimeConfig: {
|
|
WEBHOOK_URL: process.env.WEBHOOK_URL
|
|
},
|
|
srcDir: 'api/',
|
|
routeRules: {
|
|
'/': {
|
|
cors: false
|
|
}
|
|
}
|
|
})
|