加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 923 Bytes
一键复制 编辑 原始数据 按行查看 历史
devin 提交于 2021-02-24 16:41 . feat(*): init项目
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import { resolve } from 'path';
/* 路径方法 */
const pathResolver = (pathStr: string): string => {
return resolve(__dirname, '.', pathStr);
};
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
'@': pathResolver('./src'),
},
},
server: {
open: false,
https: false,
proxy: {
'/api': {
target: 'http://',
changeOrigin: true,
ws: false,
secure: false,
ignorePath: true,
},
},
},
build: {
terserOptions: {
compress: {
keep_infinity: true,
drop_console: true,
drop_debugger: true,
},
},
brotliSize: false,
chunkSizeWarningLimit: 1200,
},
plugins: [vue()],
css: {
preprocessorOptions: {
less: {
modifyVars: {
hack: `true; @import (reference) "@/styles/global/index.less";`,
},
javascriptEnabled: true,
},
},
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化