aboutsummaryrefslogtreecommitdiffstats
path: root/frontend-vanilla/vite.config.ts
blob: ab4f8b4d40f1e6cf689345885f055eb7e6236889 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

import { defineConfig } from 'vite';

// https://vite.dev/config/
export default defineConfig({
    base: '/v3/',
    server: {
        proxy: {
            '/api': 'http://127.0.0.1:4994',
            '/image': 'http://127.0.0.1:4994',
        },
    },
    build: {
        outDir: 'dist',
        emptyOutDir: true
    }
});