diff options
Diffstat (limited to 'packages/astro/test/fixtures/ssr-env/astro.config.mjs')
-rw-r--r-- | packages/astro/test/fixtures/ssr-env/astro.config.mjs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/ssr-env/astro.config.mjs b/packages/astro/test/fixtures/ssr-env/astro.config.mjs new file mode 100644 index 000000000..42f10a572 --- /dev/null +++ b/packages/astro/test/fixtures/ssr-env/astro.config.mjs @@ -0,0 +1,5 @@ +import preact from '@astrojs/preact'; + +export default { + integrations: [preact()] +} |