mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
import react from '@vitejs/plugin-react'
|
|
import { defineConfig } from 'vite-plus'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
tsconfigPaths: true,
|
|
},
|
|
optimizeDeps: {
|
|
include: ['@base-ui/react/form', '@base-ui/react/merge-props', '@base-ui/react/use-render'],
|
|
},
|
|
})
|