astro/examples/landing-page/astro.config.mjs
2021-03-29 08:43:38 -07:00

15 lines
233 B
JavaScript

export default {
projectRoot: '.',
astroRoot: './astro',
dist: './_site',
extensions: {
'.jsx': 'preact',
},
snowpack: {
optimize: {
bundle: false,
minify: true,
target: 'es2018',
},
},
};