diff options
author | 2021-03-25 14:06:08 -0400 | |
---|---|---|
committer | 2021-03-25 14:06:08 -0400 | |
commit | 3db595937719b89956c594e4a76ee68ae8de098a (patch) | |
tree | e463889925f71539f28730f957b195b1806b3cb0 /examples/snowpack/snowpack.config.js | |
parent | 18e7cc5af903543ac6f46780bfea67c13c6517df (diff) | |
download | astro-3db595937719b89956c594e4a76ee68ae8de098a.tar.gz astro-3db595937719b89956c594e4a76ee68ae8de098a.tar.zst astro-3db595937719b89956c594e4a76ee68ae8de098a.zip |
First pass at the build (#27)
This updates `astro build` to do a production build. It works! No optimizations yet.
Diffstat (limited to 'examples/snowpack/snowpack.config.js')
-rw-r--r-- | examples/snowpack/snowpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/snowpack/snowpack.config.js b/examples/snowpack/snowpack.config.js index 821552181..eb9310e80 100644 --- a/examples/snowpack/snowpack.config.js +++ b/examples/snowpack/snowpack.config.js @@ -15,7 +15,7 @@ module.exports = { out: '_site', }, optimize: { - bundle: true, + bundle: false, minify: true, target: 'es2018', }, |