2 Star 30 Fork 14

故时旅人/BM导航

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.ts 559 Bytes
一键复制 编辑 原始数据 按行查看 历史
故时旅人 提交于 2023-08-31 16:09 . 4.4.1
import react from '@vitejs/plugin-react'
import autoprefixer from 'autoprefixer'
import { resolve } from 'path'
import tailwindcss from 'tailwindcss'
import { defineConfig } from 'vite'
const pathResolve = dir => resolve(__dirname, '.', dir)
export default defineConfig({
base: './',
plugins: [react()],
resolve: {
alias: {
'@': pathResolve('./src/'),
'~img': pathResolve('./src/assets/img')
}
},
css: {
postcss: {
plugins: [
tailwindcss as any,
autoprefixer({
overrideBrowserslist: ['last 2 versions']
})
]
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/robin901118/homepage_navigation.git
git@gitee.com:robin901118/homepage_navigation.git
robin901118
homepage_navigation
BM导航
master

搜索帮助