1 Star 0 Fork 189

chengchulian/oim-web

forked from OIM即时通讯/oim-web 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.69 KB
一键复制 编辑 原始数据 按行查看 历史
chengchulian 提交于 2023-08-15 14:28 . 修复一些配置和导包优化
const path = require('path');
function resolve(dir) {
return path.join(__dirname, dir);
}
module.exports = {
chainWebpack: (config) => {
// @scss是你取的静态资源路径别名
config.resolve.alias.set('@', resolve('src'));
config.resolve.alias.set('@scss', resolve('src/styles'));
// 若需要配置多个别名,后续紧跟着设置set即可
/* config.resolve.alias.set('@scss', resolve('src/static/scss')).set('@',resolve('src'))
*/
},
// 在vue-cli版本为2.x的情况下修改webpack.dev.conf.js中的devServer对象加入disableHostCheck: true
devServer: {
open: process.platform === "darwin",
host: "www.unity3d.cc",
port: 8081,
disableHostCheck: true,
proxy: {
// 设置代理
// proxy all requests starting with /api to jsonplaceholder
"/": {
target: "http://www.unity3d.cc:10001/",
changeOrigin: true,
ws: true,
pathRewrite: {
"^/": ""
}
}
},
},
configureWebpack: {
module: {
rules: [{
test: /\.less$/,
use: [{
loader: "less-loader", options: {
lessOptions: {
javascriptEnabled: true
}
},
}],
}],
},
// Configuration applied to all builds
},
pluginOptions: {
quasar: {
importStrategy: 'kebab',
rtlSupport: true
}
},
transpileDependencies: [
'quasar'
]
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/chengchulian/oim-web.git
git@gitee.com:chengchulian/oim-web.git
chengchulian
oim-web
oim-web
master

搜索帮助