2021-03-19 16:17:38 -05:00
|
|
|
/** @type {import("snowpack").SnowpackUserConfig } */
|
|
|
|
module.exports = {
|
2021-03-21 18:16:18 -05:00
|
|
|
|
2021-03-19 16:17:38 -05:00
|
|
|
mount: {
|
|
|
|
public: '/',
|
|
|
|
//src: '/_dist_',
|
|
|
|
},
|
|
|
|
plugins: [
|
2021-03-22 19:06:58 -05:00
|
|
|
['@snowpack/plugin-sass', { compilerOptions: { style: 'compressed' } }],
|
2021-03-19 16:17:38 -05:00
|
|
|
'@snowpack/plugin-svelte',
|
2021-03-22 19:06:58 -05:00
|
|
|
'@snowpack/plugin-vue',
|
2021-03-19 16:17:38 -05:00
|
|
|
],
|
2021-03-23 14:20:03 -05:00
|
|
|
packageOptions: {},
|
2021-03-19 16:17:38 -05:00
|
|
|
buildOptions: {
|
|
|
|
out: '_site',
|
|
|
|
},
|
|
|
|
optimize: {
|
2021-03-25 13:06:08 -05:00
|
|
|
bundle: false,
|
2021-03-19 16:17:38 -05:00
|
|
|
minify: true,
|
|
|
|
target: 'es2018',
|
|
|
|
},
|
|
|
|
};
|