diff --git a/.gitignore b/.gitignore index c3c9c5b..eace794 100644 --- a/.gitignore +++ b/.gitignore @@ -35,4 +35,10 @@ lerna-debug.log* .npm # Optional eslint cache -.eslintcache \ No newline at end of file +.eslintcache + +# wrangler files +.wrangler +.dev.vars* +!.dev.vars.example +!.env.example diff --git a/wrangler.jsonc b/wrangler.jsonc new file mode 100644 index 0000000..59022ff --- /dev/null +++ b/wrangler.jsonc @@ -0,0 +1,14 @@ +{ + "$schema": "node_modules/wrangler/config-schema.json", + "name": "dito", + "compatibility_date": "2026-05-07", + "observability": { + "enabled": true + }, + "assets": { + "directory": "." + }, + "compatibility_flags": [ + "nodejs_compat" + ] +}