diff --git a/.gitignore b/.gitignore index 496ee2c..d46446a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,8 @@ -.DS_Store \ No newline at end of file +.DS_Store + +# wrangler files +.wrangler +.dev.vars* +!.dev.vars.example +.env* +!.env.example diff --git a/wrangler.jsonc b/wrangler.jsonc new file mode 100644 index 0000000..018ae7e --- /dev/null +++ b/wrangler.jsonc @@ -0,0 +1,14 @@ +{ + "$schema": "node_modules/wrangler/config-schema.json", + "name": "ralphloops-io", + "compatibility_date": "2026-05-24", + "observability": { + "enabled": true + }, + "assets": { + "directory": "website" + }, + "compatibility_flags": [ + "nodejs_compat" + ] +}