1 Star 0 Fork 870

linuxs/qiwen-file-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
linuxs 提交于 2023-11-30 18:50 . 新增修改用户密码
const path = require('path')
module.exports = {
// 选项...
publicPath: '/',
lintOnSave: false,
// 配置项不懂的地方,请查看 Vue CLI 官方文档 https://cli.vuejs.org/zh/config/#devserver
devServer: {
//disableHostCheck: true,
historyApiFallback: true,
allowedHosts: 'all',
host: '0.0.0.0',
port: 8081, // 本地开发环境 - 前端工程启动的端口;如果不想指定端口,期望启动追加,请注释 port 属性
// 配置代理,解决本地开发环境下跨域请求后台接口的问题,proxy 中的修改项修改完后需要重启项目才可生效
proxy: {
'/api': {
target: 'http://localhost:8080',
//process.env.NODE_ENV !== 'production'
//? 'http://localhost:8080'
//: 'http://localhost:8088', // 本地开发环境 - 连接后台服务,协议 + IP + 端口
ws: true, //是否跨域
changeOrigin: true,
pathRewrite: {
'^/api': '/'
}
}
}
},
productionSourceMap: false,
pluginOptions: {
'style-resources-loader': {
preProcessor: 'stylus',
patterns: []
}
},
configureWebpack: (config) => {
;(config.devtool = 'source-map'),
//config.devtool = process.env.NODE_ENV === 'production' ? '' : 'source-map',
(config.resolve.alias = {
'@': path.resolve(__dirname, './src'),
_v: path.resolve(__dirname, './src/views'),
_c: path.resolve(__dirname, './src/components'),
_a: path.resolve(__dirname, './src/assets'),
_r: path.resolve(__dirname, './src/request'),
_public: path.resolve(__dirname, './public')
})
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/linuxs/qiwen-file-web.git
git@gitee.com:linuxs/qiwen-file-web.git
linuxs
qiwen-file-web
qiwen-file-web
master

搜索帮助