2 Star 0 Fork 0

梦海/债务内网管理端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 2.27 KB
一键复制 编辑 原始数据 按行查看 历史
梦海 提交于 2024-01-03 14:39 . 1111
import { defineConfig, loadEnv } from 'vite'
import path from 'path'
import createVitePlugins from './vite/plugins'
export default defineConfig(({ mode, command }) => {
const env = loadEnv(mode, process.cwd())
const { VITE_APP_ENV } = env
return {
base: VITE_APP_ENV === 'production' ? './' : './',
plugins: createVitePlugins(env, command === 'build'),
resolve: {
alias: {
// 设置路径
'~': path.resolve(__dirname, './'),
// 设置别名
'@': path.resolve(__dirname, './src')
},
// 忽略后缀
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue']
},
server: {
port: 8086,
host: '0.0.0.0',
open: true,
proxy: {
'/debt': {
target: 'http://39.99.146.204:8881',
// target: 'http://dev.yuepong.cn',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/debt/, ''),
bypass(req, res, options: any) {
// console.log(req, "66666666666")
// console.log(options, "888888888888")
const proxyURL = options.target + options.rewrite(req.url)
console.log('proxyURL', proxyURL)
req.headers['x-req-proxyURL'] = proxyURL // 设置未生效
res.setHeader('x-req-proxyURL', proxyURL) // 设置响应头可以看到
}
}
}
},
// 构建配置
build: {
rollupOptions: {
output: {
chunkFileNames: 'static/js/[name]-[hash].js',
entryFileNames: 'static/js/[name]-[hash].js'
}
},
terserOptions: {
compress: {
// warnings: false,
drop_console: VITE_APP_ENV === 'production' ? true : false, //打包时删除console
drop_debugger: VITE_APP_ENV === 'production' ? true : false, //打包时删除 debugger
pure_funcs: ['console.log']
},
output: {
// 去掉注释内容
comments: true
}
},
outDir: env.VITE_APP_DIST
},
css: {
preprocessorOptions: {
scss: {
// 引入此scss文件 这样就可以在全局中使用预定义的变量了
additionalData: '@import "./src/assets/styles/variables.module.scss";'
}
}
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yccywln/debt-intranet-management-end.git
[email protected]:yccywln/debt-intranet-management-end.git
yccywln
debt-intranet-management-end
债务内网管理端
master

搜索帮助