mirror of
https://github.com/DerTyp7/secure-key-gen-react.git
synced 2025-10-28 12:22:14 +01:00
14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
import path from 'path'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
}
|
|
})
|