1
0

Add third laboratory work for Database Server Solutions class

This commit is contained in:
2025-12-05 01:13:57 +02:00
parent cdd9efdca5
commit a815db313f
45 changed files with 8198 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import path from 'path';
import { defineConfig, loadEnv } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, '.', '');
return {
server: {
port: 3002,
host: '0.0.0.0',
},
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, '.'),
}
}
};
});