Rafał Dzięgielewski

Results 242 comments of Rafał Dzięgielewski

How many custom components do you have? Do you use any heavy weight UI libraries like MUI?

Are you able to check the size of `components.bundle.js` locally? Honestly, can't really help much here, I've deployed two apps to Heroku this week without issues.

AdminJS needs `node_modules` in runtime. `ADMIN_JS_SKIP_BUNDLE="true"` should skip runtime bundling if used with `NODE_ENV=production`, but AdminJS still needs access to `node_modules` to get `app.bundle.js`, `design-system.bundle.js` and `global.bundle.js`. Your entry file...

To override the Dashboard I suggest just using `.add` instead of `.override` and assigning it in `AdminJSOptions`: ``` dashboard: { component: Components.MyDashboard, } ```

Have you followed our [documentation for Express](https://docs.adminjs.co/installation/plugins/express#authenticated) and set up a session store for your remote environment? You're being redirected back because the session cookie is not created which can...

Is your `NODE_ENV=production`? Heroku app's url is secure so: ``` cookie: { httpOnly: process.env.NODE_ENV === "production", secure: process.env.NODE_ENV === "production", }, ``` `secure` flag must be set to `true` for...

Do you use herokuapp domain or a custom one?

I've just checked in one of our projects and it looks to be working correctly, can you show your custom component?

DynamoDB can be used with `@adminjs/mongoose`