feat-admin-ui-interaction
Build Backend JAR / build (push) Has been cancelled

This commit is contained in:
2026-08-30 22:09:22 +08:00
parent 2b613a8e5a
commit 42bbf4904e
14 changed files with 7720 additions and 592 deletions
+7
View File
@@ -0,0 +1,7 @@
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import '@/styles/main.css'
import ImageVideoPage from '@/pages/image-video/ImageVideoPage.vue'
createApp(ImageVideoPage).use(ElementPlus).mount('#app')
+1 -1
View File
@@ -30,7 +30,7 @@ export default defineConfig({
port: 5173,
proxy: {
'/newApi/api': {
target: 'http://api.aishufu.top:18080/',
target: process.env.VITE_API_TARGET || 'http://127.0.0.1:18080/',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/newApi/, ''),
},