mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 05:08:04 +00:00
first commit
This commit is contained in:
commit
e4ba16b9a2
102 changed files with 19066 additions and 0 deletions
50
vue.config.js
Normal file
50
vue.config.js
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
const path = require("path");
|
||||
function resolve(dir) {
|
||||
return path.join(__dirname, dir);
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
devServer: {
|
||||
disableHostCheck: true,
|
||||
},
|
||||
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();
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue