1 Star 0 Fork 0

lanmo/base-template-spa

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.js 957 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘书柱 提交于 2023-12-21 15:38 . feat:基础模版上传
import { fileURLToPath, URL } from 'node:url'
import * as path from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { CodeInspectorPlugin } from 'code-inspector-plugin';
// https://vitejs.dev/config/
export default defineConfig({
server:{
// host:'192.168.1.140'
},
plugins: [
vue(),
CodeInspectorPlugin({
bundler: 'vite',
editor: "code"
}),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
css: {
preprocessorOptions: {
less: {
math: "always", // 括号内才使用数学计算
},
},
postcss: {
plugins: [
require('tailwindcss'),
require('autoprefixer'),
// require('postcss-pxtorem')({
// rootValue: 37.5,
// selectorBlackList: ['vant', 'mu'],
// propList: ['*'],
// atRules: ['media'],
// }),
]
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liushuzhu/base-template-spa.git
git@gitee.com:liushuzhu/base-template-spa.git
liushuzhu
base-template-spa
base-template-spa
master

搜索帮助