Files
dashboard/frontend/vite.config.ts
Matthias Hochmeister 93a87a7ae9 apply security audit
2026-03-11 13:18:10 +01:00

29 lines
534 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
},
},
},
envDir: '../',
envPrefix: ['VITE_', 'AUTHENTIK_'],
build: {
outDir: 'dist',
sourcemap: false,
},
});