- Adds new path aliases for improved code organization - Updates dependencies to latest versions including vue-sonner v2.0.0 - Removes sourcemap configuration from Nuxt config - Enhances API documentation with OpenAPI schemas - Removes unused security schemes and Wrangler configuration These changes modernize the project setup while improving documentation and removing unnecessary configurations.
30 lines
626 B
Text
30 lines
626 B
Text
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "sink",
|
|
"main": "dist/server/index.mjs",
|
|
"assets": {
|
|
"binding": "ASSETS",
|
|
"directory": "dist/public"
|
|
},
|
|
"compatibility_date": "2025-05-08",
|
|
"compatibility_flags": [
|
|
"nodejs_compat"
|
|
],
|
|
"keep_vars": true,
|
|
"upload_source_maps": true,
|
|
"ai": {
|
|
"binding": "AI"
|
|
},
|
|
"analytics_engine_datasets": [
|
|
{
|
|
"binding": "ANALYTICS",
|
|
"dataset": "sink"
|
|
}
|
|
],
|
|
"kv_namespaces": [
|
|
{
|
|
"binding": "KV",
|
|
"id": "ef93d42dc4b34969bab404d2e80f8dd3" // IMPORTANT: Change this to your KV namespace ID
|
|
}
|
|
]
|
|
}
|