代码拉取完成,页面将自动刷新
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";'
}
}
}
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。