diff options
author | 2021-03-29 08:43:16 -0700 | |
---|---|---|
committer | 2021-03-29 08:43:38 -0700 | |
commit | 4ff1822bb961776494e11273cbfa81fd932af0d5 (patch) | |
tree | 58b3addc9d7cb9abb264a26e3366161a0fef7fae /examples/landing-page/astro.config.mjs | |
parent | 9ab1f52a1ca018b7551dc610f7099d300ce5b473 (diff) | |
download | astro-4ff1822bb961776494e11273cbfa81fd932af0d5.tar.gz astro-4ff1822bb961776494e11273cbfa81fd932af0d5.tar.zst astro-4ff1822bb961776494e11273cbfa81fd932af0d5.zip |
add example www site
Diffstat (limited to 'examples/landing-page/astro.config.mjs')
-rw-r--r-- | examples/landing-page/astro.config.mjs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/landing-page/astro.config.mjs b/examples/landing-page/astro.config.mjs new file mode 100644 index 000000000..b8665c917 --- /dev/null +++ b/examples/landing-page/astro.config.mjs @@ -0,0 +1,15 @@ +export default { + projectRoot: '.', + astroRoot: './astro', + dist: './_site', + extensions: { + '.jsx': 'preact', + }, + snowpack: { + optimize: { + bundle: false, + minify: true, + target: 'es2018', + }, + }, +}; |