Here's the Vite config that helped me fix it requireReturnsDefault: 'auto'
:
export default defineConfig({
build: {
commonjsOptions: {
requireReturnsDefault: 'auto',
},
rollupOptions: {
external: ["pg-native"],
},
},
})