diff options
author | 2022-12-14 07:26:42 -0800 | |
---|---|---|
committer | 2022-12-14 10:26:42 -0500 | |
commit | dced4a8a2657887ec569860d9862d20f695dc23a (patch) | |
tree | edaef593d51f8ea5c1138e6fa7bcf97260b9f56c /pnpm-lock.yaml | |
parent | 8913c51e1ab3e799710e806a2335ffbcd073bd40 (diff) | |
download | astro-dced4a8a2657887ec569860d9862d20f695dc23a.tar.gz astro-dced4a8a2657887ec569860d9862d20f695dc23a.tar.zst astro-dced4a8a2657887ec569860d9862d20f695dc23a.zip |
Add `server.headers` option (#5564)
With this new `server.headers` option, the users can specify
custom headers for `astro dev` and `astro preview` servers.
This is useful when they want to build a website requiring
specific response headers such as `Cross-Origin-Opener-Policy`.
Diffstat (limited to '')
-rw-r--r-- | pnpm-lock.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e3eb66897..c895ce128 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1288,6 +1288,12 @@ importers: dependencies: astro: link:../../.. + packages/astro/test/fixtures/astro-dev-headers: + specifiers: + astro: workspace:* + dependencies: + astro: link:../../.. + packages/astro/test/fixtures/astro-directives: specifiers: astro: workspace:* @@ -1514,6 +1520,12 @@ importers: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + packages/astro/test/fixtures/astro-preview-headers: + specifiers: + astro: workspace:* + dependencies: + astro: link:../../.. + packages/astro/test/fixtures/astro-public: specifiers: astro: workspace:* |