Add feedback API

This commit is contained in:
taskylizard 2023-11-04 20:24:25 +05:30
parent bf504e0b26
commit b9bebb6c84
No known key found for this signature in database
GPG key ID: 5CABA3D642DDC497
13 changed files with 2051 additions and 110 deletions

10
nitro.config.ts Normal file
View file

@ -0,0 +1,10 @@
//https://nitro.unjs.io/config
export default defineNitroConfig({
runtimeConfig: {
WEBHOOK_URL: process.env.WEBHOOK_URL,
},
srcDir: ".vitepress",
routeRules: {
"/*": { cors: false },
},
});