1 Star 0 Fork 1

monface/vue3-vant3-vite-h5

forked from DeQ/vue3-vant3-vite-h5 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 1.47 KB
一键复制 编辑 原始数据 按行查看 历史
DeQ 提交于 2022-04-17 22:56 . host
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue' // Vue 3 单文件组件支持
import path from 'path'
import styleImport, { VantResolve } from 'vite-plugin-style-import'
export default defineConfig({
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
assets: '@/assets',
utils: '@/utils',
api: '@/api'
}
},
plugins: [
vue(),
styleImport({
// 按需引入vant
resolves: [VantResolve()]
})
],
server: {
host: '0.0.0.0',
proxy: {
'/v1': {
target: 'http://localhost:8001'
}
}
},
// Vite自身已经集成PostCSS,无需再次安装。另外也无需单独创建PostCSS配置文件,已集成到vite.config.js的css选项中
css: {
preprocessorOptions: {
less: {
modifyVars: {},
javascriptEnabled: true
},
scss: {
additionalData: `@import "src/styles/vw-rem/_util.scss";
@import "src/styles/vw-rem/_border.scss";
@import "src/styles/func.scss";`
}
},
// TODO 构建包含@charset问题 https://github.com/vitejs/vite/issues/5833
postcss: {
plugins: [
require('autoprefixer'),
{
postcssPlugin: 'internal:charset-removal',
AtRule: {
charset: (atRule) => {
if (atRule.name === 'charset') {
atRule.remove()
}
}
}
}
]
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/monface/vue3-vant3-vite-h5.git
git@gitee.com:monface/vue3-vant3-vite-h5.git
monface
vue3-vant3-vite-h5
vue3-vant3-vite-h5
master

搜索帮助