diff options
author | 2024-09-07 01:07:09 +0200 | |
---|---|---|
committer | 2024-09-07 01:07:09 +0200 | |
commit | 50ca656dbad6dbb3955b83d9f4dcf4795e98823a (patch) | |
tree | 928eb296b12e5f62025afd922f99a2aec0b1a1b2 /packages/integrations/web-vitals/test | |
parent | 5b4e3abbb152146b71c1af05d33c96211000b2a6 (diff) | |
download | astro-50ca656dbad6dbb3955b83d9f4dcf4795e98823a.tar.gz astro-50ca656dbad6dbb3955b83d9f4dcf4795e98823a.tar.zst astro-50ca656dbad6dbb3955b83d9f4dcf4795e98823a.zip |
Merge output: hybrid and output: static (#11824)
* feat: merge hybrid and static
* fix: linting
* fix: get a bunch of tests passing
* fix: make forceServerOutput optional
* fix: more tests passing
* fix: http2 test
* fix: CCC
* fix: get unit tests passing
* fix: lint
* fix: vercel
* fix: build
* fix: build
* fix: db tests
* fix: get all normal tests passing
* fix: e2e tests
* refactor: cleanup code
* fix: more tests
* fix: windows
* fix: apply feedback
* perf: do in parallel
* fix: tests
* fix: tests, for real
* fix: make server islands tests server-rendered
* fix: apply feedback
* nit: remove unnecessary file
* fix: test remove test that abuse prerender logic
* fix: ensure image endpoint is there on dev reload
Diffstat (limited to 'packages/integrations/web-vitals/test')
-rw-r--r-- | packages/integrations/web-vitals/test/fixtures/basics/astro.config.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/web-vitals/test/fixtures/basics/astro.config.mjs b/packages/integrations/web-vitals/test/fixtures/basics/astro.config.mjs index 42bfa6f66..4dae98ae0 100644 --- a/packages/integrations/web-vitals/test/fixtures/basics/astro.config.mjs +++ b/packages/integrations/web-vitals/test/fixtures/basics/astro.config.mjs @@ -6,7 +6,7 @@ import { defineConfig } from 'astro/config'; // https://astro.build/config export default defineConfig({ integrations: [db(), webVitals()], - output: 'hybrid', + output: 'static', adapter: node({ mode: 'standalone' }), devToolbar: { enabled: false, |