30 lines
404 B
JavaScript
30 lines
404 B
JavaScript
/** @type {import("snowpack").SnowpackUserConfig } */
|
|
module.exports = {
|
|
mount: {
|
|
public: '/',
|
|
src: '/_dist_'
|
|
},
|
|
plugins: [ '@snowpack/plugin-svelte' ],
|
|
install: [
|
|
/* ... */
|
|
],
|
|
installOptions: {
|
|
/* ... */
|
|
},
|
|
devOptions: {
|
|
/* ... */
|
|
},
|
|
buildOptions: {
|
|
/* ... */
|
|
},
|
|
proxy: {
|
|
/* ... */
|
|
},
|
|
alias: {
|
|
/* ... */
|
|
},
|
|
experiments: {
|
|
optimize: { bundle: true, minify: true }
|
|
}
|
|
};
|