4 Star 0 Fork 0

田磊/dkSP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.js 662 Bytes
一键复制 编辑 原始数据 按行查看 历史
田磊 提交于 2024-06-04 10:21 . first commit
import {
fileURLToPath,
URL
} from 'node:url'
import {
defineConfig
} from 'vite'
import vue from '@vitejs/plugin-vue'
import postCssPxToRem from 'postcss-pxtorem'
// https://vitejs.dev/config/
export default defineConfig({
server: {
proxy: {
'/api': {
target: 'http://104.233.167.26:6688',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, '')
}
}
},
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
base:'./',
css: {
postcss: {
plugins: [
postCssPxToRem({
rootValue: 37.5,
propList: ['*'],
unitPrecision: 3,
})
]
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tianleimayungit/dk-sp.git
git@gitee.com:tianleimayungit/dk-sp.git
tianleimayungit
dk-sp
dkSP
master

搜索帮助