mirror of
https://github.com/DerTyp7/teamspeak-obs-overlay.git
synced 2025-10-29 21:02:10 +01:00
20 lines
522 B
TypeScript
20 lines
522 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
import { viteSingleFile } from "vite-plugin-singlefile"
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: "./",
|
|
resolve: {
|
|
alias: {
|
|
"@": "/src",
|
|
"@components": "/src/components",
|
|
"@styles": "/src/styles",
|
|
"@assets": "/src/assets",
|
|
"@interfaces": "/src/interfaces",
|
|
"@utils": "/src/utils",
|
|
},
|
|
},
|
|
plugins: [react(), viteSingleFile({ useRecommendedBuildConfig: false })],
|
|
})
|