wipe it clean

This commit is contained in:
2026-08-12 14:15:12 -06:00
parent d14488d2f2
commit ab6b5be3de
120 changed files with 2 additions and 13085 deletions
-28
View File
@@ -1,28 +0,0 @@
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, resolve(__dirname, '..'), '')
const apiPort = env.HTTP_PORT || '8080'
return {
plugins: [vue()],
resolve: {
alias: {
'@': resolve(__dirname, 'src'),
},
},
server: {
proxy: {
'/api': {
target: `http://localhost:${apiPort}`,
changeOrigin: true,
},
},
},
build: {
outDir: 'dist',
},
}
})