mirror of
https://github.com/langgenius/dify.git
synced 2026-06-16 22:11:09 +08:00
17 lines
326 B
TypeScript
17 lines
326 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',
|
|
],
|
|
},
|
|
})
|