We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Bug with Warp Deploy Plugin throwing client side errors in prod
Super constructor null of anonymous class is not a constructor at new <anonymous>
To Reproduce Steps to reproduce the behavior.
Create a basic Nextjs Project Try to create a new warp instance with deploy plugin and run the commands
npm run build && npm start
Expected behavior A new warp instance should be created with Deploy Plugin
Screenshots
Desktop (please complete the following information):
Additional context
Tried a simple workaround with webpack config and it works for now, but not sure why this error comes in the first place
In next.config.mjs add a webpack config
const config = { // Other config webpack: (config, { isServer }) => { if (!isServer) { config.optimization.innerGraph = false; } return config; }, } export default config;
The text was updated successfully, but these errors were encountered:
Have you solved the problem yet? I am also encountering a similar error.
Sorry, something went wrong.
Hey try adding this in your nextjs config
webpack: (config, { isServer }) => { if (!isServer) { config.optimization.innerGraph = false; } return config; },
No branches or pull requests
Describe the bug
Bug with Warp Deploy Plugin throwing client side errors in prod
To Reproduce
Steps to reproduce the behavior.
Create a basic Nextjs Project
Try to create a new warp instance with deploy plugin and run the commands
Expected behavior
A new warp instance should be created with Deploy Plugin
Screenshots
Desktop (please complete the following information):
warp-contracts-plugin-deploy: 1.0.12
Additional context
Tried a simple workaround with webpack config and it works for now, but not sure why this error comes in the first place
In next.config.mjs add a webpack config
The text was updated successfully, but these errors were encountered: