mirror of
https://github.com/DerTyp7/teamspeak-obs-overlay.git
synced 2025-10-28 20:32:17 +01:00
17 lines
342 B
TypeScript
17 lines
342 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: "./",
|
|
resolve: {
|
|
alias: {
|
|
"@": "/src",
|
|
"@components": "/src/components",
|
|
"@styles": "/src/styles",
|
|
"@assets": "/src/assets",
|
|
},
|
|
},
|
|
plugins: [react()],
|
|
})
|