summaryrefslogtreecommitdiff
path: root/examples/middleware
diff options
context:
space:
mode:
authorGravatar Emanuele Stoppa <my.burning@gmail.com> 2023-06-05 17:25:18 +0200
committerGravatar GitHub <noreply@github.com> 2023-06-05 11:25:18 -0400
commit101f032098148b3daaac8d46ff1e535b79232e43 (patch)
tree7431ba024125356786867feb364f4c27dffa49c5 /examples/middleware
parent435a231a26091dc729d51bc633dd3ba01c117e48 (diff)
downloadastro-101f032098148b3daaac8d46ff1e535b79232e43.tar.gz
astro-101f032098148b3daaac8d46ff1e535b79232e43.tar.zst
astro-101f032098148b3daaac8d46ff1e535b79232e43.zip
feat: remove experimental flag middleware (#7109)
* fix: middleware for API endpoints * feat: remove experimental flag middleware * chore: rebase and update * chore: check if physical file exists * chore: restore change * merge * merge * fix: remove options, not needed * remove experimental from types * chore: don't have the middleware inside the manifest * Update how redirects work, slightly --------- Co-authored-by: Matthew Phillips <matthew@skypack.dev>
Diffstat (limited to 'examples/middleware')
-rw-r--r--examples/middleware/astro.config.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/middleware/astro.config.mjs b/examples/middleware/astro.config.mjs
index 1d4662423..e93513956 100644
--- a/examples/middleware/astro.config.mjs
+++ b/examples/middleware/astro.config.mjs
@@ -8,6 +8,6 @@ export default defineConfig({
mode: 'standalone',
}),
experimental: {
- middleware: true,
+ middleware: true
},
});