3 Star 4 Fork 3

传智经理/doctor-patient-h5

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 998 Bytes
一键复制 编辑 原始数据 按行查看 历史
段子黄 提交于 2022-11-15 18:14 . 16-完成了QQ登录功能
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import Components from 'unplugin-vue-components/vite'
import { VantResolver } from 'unplugin-vue-components/resolvers'
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
import { createHtmlPlugin } from 'vite-plugin-html'
import { viteMockServe } from 'vite-plugin-mock'
import path from 'path'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
Components({
dts: false,
resolvers: [VantResolver({ importStyle: false })] // 不自动引入样式
}),
createSvgIconsPlugin({
// 指定图标文件夹,绝对路径(NODE代码)
iconDirs: [path.resolve(process.cwd(), 'src/icons')]
}),
createHtmlPlugin(),
viteMockServe({
mockPath: './src/mock',
localEnabled: true
})
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
server: {
open: true,
host: true,
port: 80
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/manageritcast/doctor-patient-h5.git
git@gitee.com:manageritcast/doctor-patient-h5.git
manageritcast
doctor-patient-h5
doctor-patient-h5
master

搜索帮助