Files
workout-five/frontend/vite.config.js
T

14 lines
237 B
JavaScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
host: '0.0.0.0',
port: 5175,
proxy: {
'/api': 'http://localhost:8780'
}
}
})