Ai
1 Star 0 Fork 0

亻紫菜彡/front-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 2.97 KB
一键复制 编辑 原始数据 按行查看 历史
const path = require('path')
const webpack = require('webpack')
const WebpackDeploySftp = require('webpack-deploy-sftp')
require('babel-polyfill')
const resolve = dir => {
return path.join(__dirname, dir)
}
// 项目部署基础
// 默认情况下,我们假设你的应用将被部署在域的根目录下,
// 例如:https://www.my-app.com/
// 默认:'/'
// 如果您的应用程序部署在子路径中,则需要在这指定子路径
// 例如:https://www.foobar.com/my-app/
// 需要将它改为'/my-app/'
// iview-admin线上演示打包路径: https://file.iviewui.com/admin-dist/
const BASE_URL = process.env.NODE_ENV === 'production'
? '/'
: '/'
module.exports = {
// Project deployment base
// By default we assume your app will be deployed at the root of a domain,
// e.g. https://www.my-app.com/
// If your app is deployed at a sub-path, you will need to specify that
// sub-path here. For example, if your app is deployed at
// https://www.foobar.com/my-app/
// then change this to '/my-app/'
publicPath: BASE_URL,
// tweak internal webpack configuration.
// see https://github.com/vuejs/vue-cli/blob/dev/docs/webpack.md
// 如果你不需要使用eslint,把lintOnSave设为false即可
lintOnSave: true,
chainWebpack: config => {
config.resolve.alias
.set('@', resolve('src')) // key,value自行定义,比如.set('@@', resolve('src/components'))
.set('_c', resolve('src/components'))
},
// 设为false打包时不生成.map文件
productionSourceMap: false,
// 这里写你调用接口的基础路径,来解决跨域,如果设置了代理,那你本地开发环境的axios的baseUrl要写为 '' ,即空字符串
// devServer: {
// proxy: 'localhost:3000'
// },
configureWebpack: config => {
config.plugins.push(
new webpack.DefinePlugin({
'process.env.NODE_BUILD': JSON.stringify(process.env.NODE_BUILD)
})
)
const env = process.env
const ftpConfig = {
dev: { // 开发联调环境
host: '10.100.10.11',
remotePath: 'static_saas_static_dev'
},
test: { // rc环境
host: '10.100.50.11',
remotePath: 'static.saas.test.kiscloud.net'
},
pay: { // rc3环境
host: '10.100.50.51',
remotePath: 'static.saas.rc3.kiscloud.net'
},
rc4: { // rc4环境
host: '10.100.51.11',
remotePath: 'static.saas.rc4'
}
}
const { host, remotePath } = ftpConfig[env.NODE_BUILD] || {}
if (env.NODE_ENV === 'production' && host) {
config.plugins.push(
new WebpackDeploySftp({
port: '22',
host,
user: 'test',
password: 'test',
path: './dist/',
remotePath: `/data/web/${remotePath}/`
})
)
}
config.entry.app = ['babel-polyfill', './src/main.js']
config.module.rules.push({
test: /\.xlsx?$/,
loader: 'file-loader',
options: {
name: 'excel/[name].[hash:7].[ext]'
}
})
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zicai1026/front-web.git
git@gitee.com:zicai1026/front-web.git
zicai1026
front-web
front-web
master

搜索帮助