Fixed websockets chat message limit bug

This commit is contained in:
Justin Ferrari
2024-09-30 14:56:06 +03:00
parent 0087985f2d
commit e24153527c
5 changed files with 44 additions and 13 deletions

View File

@@ -3,6 +3,7 @@ import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// Import path module for resolving file paths
import { resolve } from 'path';
import fixReactVirtualized from 'esbuild-plugin-react-virtualized'
export default defineConfig({
test: {
@@ -25,5 +26,10 @@ export default defineConfig({
assetFileNames: `[name].[ext]`
}
}
}
},
optimizeDeps: {
esbuildOptions: {
plugins: [fixReactVirtualized],
},
},
});