mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
25 lines
384 B
JavaScript
25 lines
384 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
mount: {
|
|
public: { url: '/', static: true },
|
|
src: { url: '/dist' },
|
|
},
|
|
plugins: [
|
|
'@snowpack/plugin-postcss',
|
|
'@prefresh/snowpack',
|
|
[
|
|
'@snowpack/plugin-optimize',
|
|
{
|
|
preloadModules: true,
|
|
},
|
|
],
|
|
],
|
|
installOptions: {
|
|
sourceMaps: false,
|
|
},
|
|
buildOptions: {
|
|
sourceMaps: true,
|
|
},
|
|
};
|