Mercurial
view love/epi/vite.config.ts @ 154:bdcc610eeed8
[Markdown Converter][GuiZe] Added markdown coverter in C and wasm rule sets. Needs further view on this as I haven't taken a look. Written by Claude.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Mon, 12 Jan 2026 09:11:58 -0800 |
| parents | cf9caa4abc3e |
| children |
line wrap: on
line source
import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; import path from 'path'; import tailwindcss from '@tailwindcss/vite'; import { tanstackRouter } from '@tanstack/router-plugin/vite'; export default defineConfig({ plugins: [ tanstackRouter({ target: 'react', autoCodeSplitting: true }), tailwindcss(), react({ babel: { plugins: [ ['babel-plugin-react-compiler'], ], }, }), ], resolve: { alias: { '@': path.resolve(__dirname, './src'), }, }, });