加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 633 Bytes
一键复制 编辑 原始数据 按行查看 历史
yosong 提交于 2023-04-18 17:53 . '--04/08'
/*
* @Author: yosong
* @Date: 2023-04-06 10:55:40
* @LastEditors: Do not edit
* @LastEditTime: 2023-04-18 17:52:54
* @FilePath: \my_gpt\vite.config.ts
*/
import { fileURLToPath, URL } from 'node:url'
import legacy from '@vitejs/plugin-legacy'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
// legacy({
// targets: ['defaults', 'not IE 11']
// }),
vue()
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
base: './',
server: {
host: '0.0.0.0'
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化