mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
22 lines
441 B
JavaScript
22 lines
441 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
mount: {
|
|
public: { url: '/', static: true },
|
|
src: { url: '/dist' },
|
|
},
|
|
plugins: ['@snowpack/plugin-postcss', '@prefresh/snowpack', 'snowpack-plugin-hash'],
|
|
routes: [{ match: 'routes', src: '.*', dest: '/index.html' }],
|
|
optimize: {
|
|
bundle: false,
|
|
minify: true,
|
|
treeshake: true,
|
|
},
|
|
packageOptions: {
|
|
sourcemap: false,
|
|
},
|
|
buildOptions: {
|
|
sourcemap: false,
|
|
},
|
|
};
|