mirror of
https://github.com/langgenius/dify.git
synced 2026-03-17 04:47:50 +08:00
20 lines
356 B
JavaScript
20 lines
356 B
JavaScript
import { defineConfig } from 'taze'
|
|
|
|
export default defineConfig({
|
|
exclude: [
|
|
// We are going to replace these
|
|
'react-syntax-highlighter',
|
|
'react-window',
|
|
'@types/react-window',
|
|
|
|
// We can not upgrade these yet
|
|
'tailwind-merge',
|
|
'tailwindcss',
|
|
],
|
|
|
|
write: true,
|
|
install: false,
|
|
recursive: true,
|
|
interactive: true,
|
|
})
|