1 Star 0 Fork 2

zxyuns/Vue3-Ts-Vant-H5

forked from lidonghui/Vue3-Ts-Vant-H5 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
lidonghui 提交于 2022-10-19 14:30 . init project
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 { resolve } from 'path'
// https://vitejs.dev/config/
export default defineConfig({
/**
* 在生产中服务时的基本公共路径。
* @default '/'
*/
base: './',
build: {
target: 'modules',
outDir: 'dist', //指定输出路径
assetsDir: 'assets', // 指定生成静态资源的存放路径
minify: 'terser', // 混淆器,terser构建后文件体积更小
},
css: {
preprocessorOptions: {
scss: {
javascriptEnabled: true
}
}
},
plugins: [
vue(),
Components({
resolvers: [VantResolver()]
})
],
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
server: {
open: false, //启动项目后打开浏览器
port: 4200,
https:false,
cors: true
}
// server: {
// open: false, //启动项目后打开浏览器
// port: 4200,
// //host: "http://127.0.0.1",
// https:false,
// cors: true, // 默认启用并允许任何源
// proxy:{
// '/api':{
// target:'http://127.0.0.1:9900',//API服务地址
// changeOrigin:true, //开启跨域
// ws:true,
// rewrite: (path) => path.replace(/^\/api/, '')
// }
// }
// }
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/zxyuns/vue3-ts-vant-h5.git
git@gitee.com:zxyuns/vue3-ts-vant-h5.git
zxyuns
vue3-ts-vant-h5
Vue3-Ts-Vant-H5
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385