diff options
author | 2022-07-25 00:18:02 -0400 | |
---|---|---|
committer | 2022-07-25 00:18:02 -0400 | |
commit | 6fd161d7691cbf9d3ffa4646e46059dfd0940010 (patch) | |
tree | ce2d0ce18f42a0cb0de026cbf50a0be1a57c07d0 /examples/ssr/astro.config.mjs | |
parent | 8859655f15b718a1fc89bf87d352aa98841b88ad (diff) | |
download | astro-6fd161d7691cbf9d3ffa4646e46059dfd0940010.tar.gz astro-6fd161d7691cbf9d3ffa4646e46059dfd0940010.tar.zst astro-6fd161d7691cbf9d3ffa4646e46059dfd0940010.zip |
Add the `output` option (#4015)
* Start of work on astroConfig.mode === 'server'
* Add tests and more
* adapter -> deploy in some places
* Add fallback for `adapter` config
* Update more tests
* Update image tests
* Fix clientAddress test
* Updates based on PR review
* Add a changeset
* Update integrations tests + readme
* Oops
* Remove old option
* Rename `mode` to `output`
* Update Node adapter test
* Update test
* fred pass
* fred pass
* fred pass
* fix test
Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'examples/ssr/astro.config.mjs')
-rw-r--r-- | examples/ssr/astro.config.mjs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/ssr/astro.config.mjs b/examples/ssr/astro.config.mjs index 5794b07f1..b859914ac 100644 --- a/examples/ssr/astro.config.mjs +++ b/examples/ssr/astro.config.mjs @@ -4,6 +4,7 @@ import node from '@astrojs/node'; // https://astro.build/config export default defineConfig({ + output: 'server', adapter: node(), integrations: [svelte()], }); |