1 Star 0 Fork 1

WENGLEI/oreo-editor

forked from 陈夕/oreo-editor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 1002 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈夕 提交于 2024-07-22 10:30 . Update enum types
import { fileURLToPath, URL } from 'node:url';
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import vuetify from 'vite-plugin-vuetify';
// import vueJsx from '@vitejs/plugin-vue-jsx'
// https://vitejs.dev/config/
export default defineConfig({
// base: '/',
base: '/oreo-editor',
plugins: [
vue(),
// vueJsx(), 都用Vue还用什么JSX
vuetify(),
],
server: {
open: true,
host: '0.0.0.0',
port: 9527,
hmr: true,
// proxy: {
// // 选项写法
// '/api': {
// target: 'xxxx',
// changeOrigin: true,
// rewrite: (path) => path.replace(/^\/api/, '')
// }
// }
},
optimizeDeps: {
exclude: ['@babylonjs/havok'],
},
assetsInclude: ['**/*.gltf', '**/*.glb'],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/WENGLEI/oreo-editor.git
git@gitee.com:WENGLEI/oreo-editor.git
WENGLEI
oreo-editor
oreo-editor
main

搜索帮助