Adding the skeleton QR code
This commit is contained in:
24
frontend/vite.config.ts
Normal file
24
frontend/vite.config.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import { defineConfig } from 'vitest/config';
|
||||
import react from '@vitejs/plugin-react';
|
||||
|
||||
// https://vite.dev/config/
|
||||
export default defineConfig({
|
||||
test: {
|
||||
globals: true,
|
||||
environment: 'jsdom',
|
||||
setupFiles: './src/test/setup.ts',
|
||||
},
|
||||
plugins: [react()],
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': '/src',
|
||||
'@src': '/src',
|
||||
'@components': '/src/components',
|
||||
'@templates': '/src/components/templates',
|
||||
'@atoms': '/src/components/atoms',
|
||||
'@molecules': '/src/components/molecules',
|
||||
'@organisms': '/src/components/organisms',
|
||||
'@styles': '/src/styles',
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user