mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
32 lines
564 B
JavaScript
32 lines
564 B
JavaScript
// Snowpack Configuration File
|
|
// See all supported options: https://www.snowpack.dev/reference/configuration
|
|
|
|
/** @type {import("snowpack").SnowpackUserConfig } */
|
|
module.exports = {
|
|
root: "src/",
|
|
mount: {
|
|
src: "/",
|
|
assets: "/assets",
|
|
},
|
|
exclude: ["*.tmp", "extracted-*"],
|
|
plugins: [
|
|
/* ... */
|
|
[
|
|
"./snowpack-maki-plugin.js",
|
|
{
|
|
/* pluginOptions */
|
|
},
|
|
],
|
|
],
|
|
packageOptions: {
|
|
/* ... */
|
|
},
|
|
devOptions: {
|
|
/* ... */
|
|
port: 3001
|
|
},
|
|
buildOptions: {
|
|
/* ... */
|
|
out: "./build",
|
|
},
|
|
};
|