代码拉取完成,页面将自动刷新
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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。