refactor: 移除调试日志,优化代码整洁性

This commit is contained in:
qingfeng1121
2025-12-23 22:57:57 +08:00
parent 0151afcde7
commit 47df45277e
8 changed files with 62 additions and 61 deletions

View File

@@ -7,8 +7,6 @@ import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
@@ -27,15 +25,6 @@ export default defineConfig({
},
server: {
host: '0.0.0.0',
proxy: {
// 配置API代理
'/api': {
// target: 'http://www.qf1121.top',
target: 'http://localhost:7070',
changeOrigin: true,
rewrite: (path) => path
}
}
},
})