diff options
author | 2023-06-05 17:25:18 +0200 | |
---|---|---|
committer | 2023-06-05 11:25:18 -0400 | |
commit | 101f032098148b3daaac8d46ff1e535b79232e43 (patch) | |
tree | 7431ba024125356786867feb364f4c27dffa49c5 /examples/middleware | |
parent | 435a231a26091dc729d51bc633dd3ba01c117e48 (diff) | |
download | astro-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.mjs | 2 |
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 }, }); |