Files
podsteadr/frontend/vite.config.ts
T

13 lines
247 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
export default defineConfig({
plugins: [vue()],
server: {
proxy: {
'/api': 'http://localhost:8095',
'/feeds': 'http://localhost:8095',
},
},
});