mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-09-26 19:36:35 +08:00
9 lines
273 B
TypeScript
9 lines
273 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import path from 'node:path';
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
cacheDir: '/tmp/411-reasoning-vite-cache',
|
|
resolve: { alias: { '@': path.resolve(__dirname, 'src') } },
|
|
});
|