import path from 'node:path' import tailwindcss from '@tailwindcss/vite' import react from '@vitejs/plugin-react' import { defineConfig } from 'vite' // https://vitejs.dev/config/ export default defineConfig({ plugins: [ react({ babel: { plugins: [['babel-plugin-react-compiler', { target: '19' }]], }, }), tailwindcss(), ], server: { host: '127.0.0.1', port: 3000, proxy: { '/api': { target: 'http://localhost:3001', changeOrigin: true, }, }, }, resolve: { alias: { '#': path.resolve(__dirname, './src'), }, }, })