23 Zeilen
485 B
TypeScript
23 Zeilen
485 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import path from 'path'
|
|
|
|
export default defineConfig({
|
|
// Use relative asset paths so the build works when deployed under a subdirectory
|
|
base: './',
|
|
plugins: [react()],
|
|
server: {
|
|
port: Number(process.env.VITE_PORT || 5174),
|
|
strictPort: true,
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
emptyOutDir: true,
|
|
},
|
|
})
|