代码拉取完成,页面将自动刷新
同步操作将从 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'
}
},
// output: {
// filename: 'index.js',
// path: path.resolve(__dirname, './lib'),
// library: '@wocwin/t-ui', // 指定类库名,主要用于直接引用的方式
// libraryTarget: 'umd' // 定义打包方式Universal Module Definition,同时支持在CommonJS、AMD和全局变量使用
// },
// 强制内联CSS
css: {
extract: false
},
configureWebpack: config => {
config.resolve.alias['@'] = resolve('examples')
config.resolve.alias['components'] = resolve('examples/components')
config.resolve.alias['~'] = resolve('packages')
// 生产环境配置
if (isProduction) {
config.mode = 'production'
// 打包文件大小配置
config.performance = {
maxEntrypointSize: 10000000,
maxAssetSize: 30000000
}
}
},
// 底层是webpack-chain packages
chainWebpack: config => {
// 配置兼容IE浏览器
// config.entry.app = ['babel-polyfill', './src/main.js']
// 配置别名
// vue默认@指向src目录,这里要修正为examples,另外新增一个~指向packages
// config.resolve.alias
// .set('@', path.resolve('examples'))
// .set('~', path.resolve('packages'))
// lib目录是组件库最终打包好存放的地方,不需要eslint检查
// examples/docs是存放md文档的地方,也不需要eslint检查
// config.module
// .rule('eslint')
// .exclude.add(path.resolve('lib'))
// .end()
// packages和examples目录需要加入编译
// config.module
// .rule('eslint')
// .exclude.add(path.resolve('lib'))
// .end()
// .rule('js')
// .include.add('/packages/')
// .end()
// // .include.add('/examples/')
// // .end()
// .use('babel')
// .loader('babel-loader')
// .tap(options => {
// // 修改它的选项...
// return options
// })
// 生产环境配置
// if (isProduction) {
// // 删除预加载
// config.plugins.delete('preload')
// config.plugins.delete('prefetch')
// // 压缩代码
// config.optimization.minimize(true)
// // 分割代码
// config.optimization.splitChunks({
// chunks: 'all'
// // maxSize: 100000 // 大于100kb做二次分割
// })
// }
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。