mirror of
https://github.com/DerTyp7/tealfire-website.git
synced 2025-10-28 12:22:14 +01:00
16 lines
309 B
TypeScript
16 lines
309 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
// aliases
|
|
resolve: {
|
|
alias: {
|
|
'@': '/src',
|
|
'@styles': '/src/styles',
|
|
'@components': '/src/components',
|
|
},
|
|
},
|
|
})
|