加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
martsforever 提交于 2019-07-26 16:24 . rename plain-ui to ali-subject
const resolve = require('path').resolve
const isProd = process.env.NODE_ENV === 'production'
console.log('is production:' + process.env.NODE_ENV === 'production')
const option = {
publicPath: './',
productionSourceMap: true,
devServer: {
port: '7554',
},
pages: {
index: {
// page 的入口
entry: 'subject3/demo/main.js',
// 模板来源
template: 'public/index.html',
// 在 dist/index.html 的输出
filename: 'index.html',
// 当使用 title 选项时,
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: 'ali-subject',
// 在这个页面中包含的块,默认情况下会包含
// 提取出来的通用 chunk 和 vendor chunk。
chunks: ['chunk-vendors', 'chunk-common', 'index']
},
},
configureWebpack: {
externals: {
...(isProd ? {
'vue': 'Vue'
} : {})
},
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'src': resolve('./subject3/src'),
'demo': resolve('./subject3/demo'),
'subject': resolve('./subject3/src'),
}
},
},
css: {
loaderOptions: {
sass: {
data: `@import "src/styles/global.scss"; @import "demo/global.scss";`
}
}
},
chainWebpack: config => {
config.plugins.delete('prefetch-index')
}
}
module.exports = option
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化