this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 22 lines 411 B view raw
1import { defineConfig } from 'vite'; 2import react from '@vitejs/plugin-react'; 3import { resolve } from 'path'; 4 5export default defineConfig({ 6 plugins: [react()], 7 root: 'src/web/app', 8 build: { 9 outDir: '../../../dist', 10 emptyOutDir: true, 11 }, 12 resolve: { 13 alias: { 14 '@': resolve(__dirname, 'src'), 15 }, 16 }, 17 server: { 18 proxy: { 19 '/api': 'http://localhost:3456', 20 }, 21 }, 22});