import react from '@vitejs/plugin-react'; import path from 'node:path'; import { defineConfig } from 'vite'; // https://vitejs.dev/config/ export default defineConfig({ plugins: [ // other Vite plugins react({ babel: { plugins: [ // other Babel plugins [ "@locator/babel-jsx/dist", { env: "development", }, ], ], }, }), ], resolve: { alias: { '@': path.resolve(__dirname, './src'), }, }, server: { port: 4202, }, preview: { port: 4202, }, base: '/karideo', });