mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-11-30 22:45:46 +01:00
added singlerepo structure
This commit is contained in:
15
frontend/vite.config.ts
Normal file
15
frontend/vite.config.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
// frontend/vite.config.ts
|
||||
import { defineConfig } from 'vite';
|
||||
import react from '@vitejs/plugin-react';
|
||||
import { resolve } from 'path';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': resolve(__dirname, './src'),
|
||||
'@premium-frontend': resolve(__dirname, '../premium/frontendPRO/src'),
|
||||
'@premium-backend': resolve(__dirname, '../premium/backendPRO/src')
|
||||
}
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user