加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
import { fileURLToPath, URL } from 'node:url'
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd());
const { VITE_API_BASE_URL } = env;
return {
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
publicDir: 'public',
root: './',
base: '/',
css: {
preprocessorOptions: {
scss: {
additionalData: '@import "@/styles/common.scss";@import "@/styles/variables.scss";'
}
}
},
build: {
outDir: 'dist', // 指定输出路径
assetsDir: 'assets', // 指定生成静态文件目录
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true
},
},
},
server: {
host: '127.0.0.1',
port: 5173,
open: true,
proxy: {
[VITE_API_BASE_URL]: {
target: 'https://lihong.org.cn:441',
changeOrigin: true,
rewrite: (path) => path.replace(new RegExp('^' + VITE_API_BASE_URL), '/'),
},
},
disableHostCheck: true,
headers: {
'Access-Control-Allow-Origin': '*',
},
},
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化