1 Star 1 Fork 0

CITRUS/vue-next-music-webapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 845 Bytes
一键复制 编辑 原始数据 按行查看 历史
CITRUS 提交于 2021-06-26 23:53 . 修改配置
const registerRouter = require('./backend/router')
module.exports = {
pages: {
index: {
entry: 'src/main.js',
title: '青柠乐动',
},
},
css: {
loaderOptions: {
scss: {
/* 全局引入 mixin 和 variable
-----------*/
prependData: `
@import '@/assets/scss/mixin.scss';
@import '@/assets/scss/variable.scss';
`,
},
},
},
devServer: {
before(app) {
registerRouter(app)
},
},
// 分析依赖 npm run build/serve --report
configureWebpack: config => {
if (process.env.npm_config_report) {
const BundleAnalyzerPlugin =
require('webpack-bundle-analyzer').BundleAnalyzerPlugin
config.plugins.push(new BundleAnalyzerPlugin())
}
},
productionSourceMap: false, // 生产不需要打开sourceMap
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/citrus-11/vue-next-music-webapp.git
git@gitee.com:citrus-11/vue-next-music-webapp.git
citrus-11
vue-next-music-webapp
vue-next-music-webapp
master

搜索帮助