Adding the skeleton QR code

This commit is contained in:
2026-03-14 00:24:58 -04:00
commit 6ce0fc0768
27 changed files with 7628 additions and 0 deletions

24
frontend/vite.config.ts Normal file
View 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',
},
},
});