1 Star 0 Fork 14

lockheart/前端导航

forked from 落幕/前端导航 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
故时旅人 提交于 2022-09-19 15:23 . 3.3.5
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
import tailwindcss from 'tailwindcss'
import autoprefixer from 'autoprefixer'
import {resolve} from 'path'
import AutoImport from 'unplugin-auto-import/vite'
import ElementPlus from 'unplugin-element-plus/vite'
const pathResolve = (dir) => resolve(__dirname, '.', dir)
export default defineConfig({
base:'./',
plugins: [
vue(),
AutoImport({
imports: ['vue']
}),
ElementPlus()
],
server: {
host: '0.0.0.0',
open: true,
port: 8080
},
resolve: {
alias: {
'@': pathResolve('./src/'),
'~img': pathResolve('./src/assets/img'),
}
},
css: {
postcss: {
plugins: [
tailwindcss,
autoprefixer({
overrideBrowserslist: ['last 2 versions']
}),
{
postcssPlugin: 'internal:charset-removal',
AtRule: {
charset: (atRule) => {
atRule.name === 'charset' && atRule.remove()
}
}
}
]
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qovop/homepage_navigation.git
git@gitee.com:qovop/homepage_navigation.git
qovop
homepage_navigation
前端导航
master

搜索帮助