2021-01-09 09:26:46 -08:00
|
|
|
module.exports = {
|
|
|
|
|
mount: {
|
|
|
|
|
public: { url: '/', static: true },
|
|
|
|
|
src: { url: '/dist' },
|
|
|
|
|
},
|
2021-02-05 08:07:24 -08:00
|
|
|
plugins: ['@snowpack/plugin-postcss', '@prefresh/snowpack', 'snowpack-plugin-hash'],
|
2021-06-10 15:02:43 -04:00
|
|
|
routes: [{ match: 'all', src: '(?!.*(.svg|.gif|.json|.jpg|.jpeg|.png|.js)).*', dest: '/index.html' }],
|
2021-02-05 08:07:24 -08:00
|
|
|
optimize: {
|
2021-02-07 07:33:37 -08:00
|
|
|
bundle: false,
|
2021-02-05 08:07:24 -08:00
|
|
|
minify: true,
|
|
|
|
|
treeshake: true,
|
|
|
|
|
},
|
2021-01-16 10:12:39 -08:00
|
|
|
packageOptions: {
|
|
|
|
|
sourcemap: false,
|
2021-01-09 09:26:46 -08:00
|
|
|
},
|
|
|
|
|
buildOptions: {
|
2021-02-05 08:07:24 -08:00
|
|
|
sourcemap: false,
|
2021-01-09 09:26:46 -08:00
|
|
|
},
|
|
|
|
|
};
|