11 lines
289 B
TypeScript
11 lines
289 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
server: {
|
|
port: 5173,
|
|
proxy: { '/api': { target: 'http://localhost:5000', changeOrigin: true } },
|
|
},
|
|
build: { outDir: 'dist', assetsDir: 'assets' },
|
|
}) |