Fetch the repository succeeded.
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vitePluginImp from 'vite-plugin-imp'
const path = require('path')
const isProducetion = process.env.NODE_ENV === 'production'
// https://vitejs.dev/config/
export default defineConfig({
base: './',
build: {
outDir: 'football'
},
plugins: [
vue(),
vitePluginImp({
libList: [
{
libName: 'vant',
style(name) {
if (/CompWithoutStyleFile/i.test(name)) {
// This will not import any style file
return false
}
return `vant/es/${name}/index.css`
}
},
]
})
],
resolve: {
alias: {
'@': path.resolve(__dirname, path.resolve('./src'))
}
},
css: {
preprocessorOptions: {
scss: {
additionalData: `@import '@/assets/style/style.scss';`
}
}
},
server: { //自定义服务器
port: 7000, //端口
strictPort: true, //设为true时,如果port已被占用会强制退出
https: false, //启用https
open: false, //自动打开浏览器
proxy: { //设置代理相关
'/api': {
target: 'http://localhost:8089',
changeOrigin: true,
// rewrite: path => path.replace(/^\/api/, '')
}
},
hmr: { //热更新相关,直接设置为false则关闭,默认开启
overlay: true
}
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。