mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 17:18:52 +00:00
31 lines
549 B
JavaScript
31 lines
549 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: {
|
|
/* ... */
|
|
},
|
|
buildOptions: {
|
|
/* ... */
|
|
out: "./build",
|
|
},
|
|
};
|