diff options
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', + }, + }, +}; |