mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-02-07 11:05:05 +08:00
Fix: dataset page enter key to save (#13035)
### What problem does this PR solve? Fix dataset page enter key to save Fix the warnings and optimize the code. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -101,6 +101,12 @@ export default defineConfig(({ mode, command }) => {
|
||||
experimentalMinChunkSize: 30 * 1024,
|
||||
chunkSizeWarningLimit: 1000,
|
||||
rollupOptions: {
|
||||
onwarn(warning, warn) {
|
||||
if (warning.code === 'EMPTY_BUNDLE') {
|
||||
return;
|
||||
}
|
||||
warn(warning);
|
||||
},
|
||||
output: {
|
||||
manualChunks(id) {
|
||||
// if (id.includes('src/components')) {
|
||||
|
||||
Reference in New Issue
Block a user