1 Star 0 Fork 0

yyjb5/vite-react-ts-team

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 722 Bytes
一键复制 编辑 原始数据 按行查看 历史
yyjb5 提交于 3年前 . fix: 修改less插件
import react from '@vitejs/plugin-react';
import path from 'path';
import { defineConfig } from 'vite';
import eslintPlugin from './plugins/vite-plugin-eslint';
import stylelintPlugin from './plugins/vite-plugin-stylelint';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), eslintPlugin(), stylelintPlugin()],
css: {
// css modules
modules: {
scopeBehaviour: 'local',
generateScopedName: '[local]_[hash:base64:6]',
},
postcss: {
plugins: [],
},
preprocessorOptions: {
less: {
javascriptEnabled: true,
},
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
'~': __dirname,
},
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yyjb5/vite-react-ts-team.git
git@gitee.com:yyjb5/vite-react-ts-team.git
yyjb5
vite-react-ts-team
vite-react-ts-team
master

搜索帮助