22 lines
498 B
TypeScript
22 lines
498 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import { resolve } from 'path';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve(__dirname, 'src'), // Adds alias for the 'src' folder
|
|
},
|
|
},
|
|
server: {
|
|
proxy: {
|
|
'/auth': {
|
|
target: 'https://localhost',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
},
|
|
},
|
|
},
|
|
});
|