mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-23 01:42:25 +08:00
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
const path = require("path");
|
|
function resolve(dir) {
|
|
return path.join(__dirname, dir);
|
|
}
|
|
|
|
module.exports = {
|
|
devServer: {
|
|
disableHostCheck: true,
|
|
port: process.env.DEV_SERVER_PORT || 8080
|
|
},
|
|
pwa: {
|
|
name: "YesPlayMusic",
|
|
iconPaths: {
|
|
favicon32: "img/icons/favicon-32x32.png",
|
|
},
|
|
themeColor: "#ffffff00",
|
|
manifestOptions: {
|
|
background_color: "#335eea",
|
|
},
|
|
// workboxOptions: {
|
|
// swSrc: "dev/sw.js",
|
|
// },
|
|
},
|
|
pages: {
|
|
index: {
|
|
entry: "src/main.js",
|
|
template: "public/index.html",
|
|
filename: "index.html",
|
|
title: "YesPlayMusic",
|
|
chunks: ["chunk-vendors", "chunk-common", "index"],
|
|
},
|
|
},
|
|
chainWebpack(config) {
|
|
config.module.rules.delete("svg");
|
|
config.module.rule("svg").exclude.add(resolve("src/assets/icons")).end();
|
|
config.module
|
|
.rule("icons")
|
|
.test(/\.svg$/)
|
|
.include.add(resolve("src/assets/icons"))
|
|
.end()
|
|
.use("svg-sprite-loader")
|
|
.loader("svg-sprite-loader")
|
|
.options({
|
|
symbolId: "icon-[name]",
|
|
})
|
|
.end();
|
|
},
|
|
};
|