2 Star 0 Fork 0

李鹏程/伍小哥小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 850 Bytes
一键复制 编辑 原始数据 按行查看 历史
charlesshen 提交于 2024-10-31 18:49 . mine page
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
return {
base: '/',
plugins: [react()],
resolve: {
alias: {
'@': path.resolve('./src'),
}
},
css: {
// 对css的行为进行配置
preprocessorOptions: {
// key + config key代表预处理器的名
less: {
// 整个的配置对象都会最终给到less的执行参数(全局参数)中去
// 在webpack里就给less-loader去配置就好了
math: 'always',
modifyVars: {
'@primary-color': '#E60012',//主题色
'@border-color': '#eeeeee',// 边框颜色
},
javascriptEnabled: true,
}
},
},
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lpc412825/wxg_app.git
git@gitee.com:lpc412825/wxg_app.git
lpc412825
wxg_app
伍小哥小程序
master

搜索帮助