代码拉取完成,页面将自动刷新
同步操作将从 wocwin/t-ui 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const path = require('path')
const port = 2222
const isProduction = process.env.NODE_ENV === 'production'
// function resolve (dir) {
// return path.join(__dirname, dir)
// }
module.exports = {
transpileDependencies: ['element-ui'], // 解决IE浏览器本地启动白屏现象
// outputDir: process.env.outputDir || 'dist', // 输出文件名称
// publicPath: '/',//部署应用包时的基本 URL
productionSourceMap: !isProduction, // 解决vue项目打包后浏览器F12查看到项目源代码false不能看到
// productionSourceMap: true, // 测试调试打断点
// lintOnSave: false,// 去掉eslint校验
devServer: {
port: port, // 设置端口号
open: true, // 启动项目自动打开浏览器
proxy: { // 解决跨域问题
'/api': {
target: 'http://localhost:2222/', // 本地json数据
changeOrigin: true,
ws: false,
pathRewrite: {
'/api': '/mock' // 本地
}
}
}
},
// 修改 src 目录 为 examples 目录
pages: {
index: {
entry: 'examples/main.js',
template: 'public/index.html',
filename: 'index.html'
}
},
// 强制内联CSS
css: {
extract: false
},
configureWebpack: {
resolve: {
alias: {
'@': path.resolve(__dirname, './examples')
// 'vue$': path.resolve(__dirname, './node_modules/vue/dist/vue.runtime.esm.js')
}
}
},
// 底层是webpack-chain packages
chainWebpack: config => {
// 配置兼容IE浏览器
// config.entry.app = ['babel-polyfill', './src/main.js']
// 配置别名
// config.resolve.alias
// .set('@', resolve('examples'))
// 生产环境配置
if (isProduction) {
// 删除预加载
config.plugins.delete('preload')
config.plugins.delete('prefetch')
// 压缩代码
config.optimization.minimize(true)
// 分割代码
config.optimization.splitChunks({
chunks: 'all'
// maxSize: 100000 // 大于100kb做二次分割
})
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。