forked from Github/frigate
feat!: web user interface
This commit is contained in:
committed by
Blake Blackshear
parent
bf5ec2f65f
commit
d4941f2a5f
24
web/snowpack.config.js
Normal file
24
web/snowpack.config.js
Normal file
@@ -0,0 +1,24 @@
|
||||
'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,
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user