diff --git a/docs-src/.gitignore b/docs-src/.gitignore index abe7460..907cc50 100644 --- a/docs-src/.gitignore +++ b/docs-src/.gitignore @@ -1,3 +1,10 @@ .asnotes/ -.asnotesignore \ No newline at end of file +.asnotesignore + +# wrangler files +.wrangler +.dev.vars* +!.dev.vars.example +.env* +!.env.example diff --git a/docs-src/wrangler.jsonc b/docs-src/wrangler.jsonc new file mode 100644 index 0000000..2bb303f --- /dev/null +++ b/docs-src/wrangler.jsonc @@ -0,0 +1,14 @@ +{ + "$schema": "node_modules/wrangler/config-schema.json", + "name": "as-notes", + "compatibility_date": "2025-09-27", + "observability": { + "enabled": true + }, + "assets": { + "directory": "blog-publish" + }, + "compatibility_flags": [ + "nodejs_compat" + ] +}