4 Star 45 Fork 22

hongquan/resume-design

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.ts 1.68 KB
一键复制 编辑 原始数据 按行查看 历史
hongquan 提交于 2024-06-04 20:08 . fix(vite.config.ts): 热更新
import { fileURLToPath } from 'url';
import { ConfigEnv, defineConfig, loadEnv } from 'vite';
import { createBuild } from './build/vite/build';
import { wrapperEnv } from './build/utils';
import { createProxy } from './build/vite/proxy';
import { createVitePlugins } from './build/vite/plugin';
import autoprefixer from 'autoprefixer';
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }: ConfigEnv) => {
const root = process.cwd(); // 当前工作目录
const isBuild = command === 'build'; // 是否是构建 serve
const env = loadEnv(mode, root); // 加载env环境
const viteEnv = wrapperEnv(env);
return {
// base: './',
resolve: {
//设置别名
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
build: createBuild(viteEnv),
css: {
preprocessorOptions: {
scss: {
additionalData: '@use "@/style/global.scss" as *;' //关键
}
},
postcss: {
// ⚠️关键代码
plugins: [
autoprefixer({
// 自动添加前缀
overrideBrowserslist: [
'Android 4.1',
'iOS 7.1',
'Chrome > 31',
'ff > 31',
'ie >= 8'
//'last 2 versions', // 所有主流浏览器最近2个版本
],
grid: true
})
]
}
},
plugins: createVitePlugins(viteEnv, isBuild),
esbuild: {
logOverride: { 'this-is-undefined-in-esm': 'silent' }
},
server: {
port: 8888, //启动端口
host: '0.0.0.0',
open: true,
hmr: true,
// 设置代理
proxy: createProxy()
}
};
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/sharemore52/resume-design.git
git@gitee.com:sharemore52/resume-design.git
sharemore52
resume-design
resume-design
main

搜索帮助