Open Envoy-VC opened 11 months ago
Have you solved the problem yet? I am also encountering a similar error.
Have you solved the problem yet? I am also encountering a similar error.
Hey try adding this in your nextjs config
webpack: (config, { isServer }) => {
if (!isServer) {
config.optimization.innerGraph = false;
}
return config;
},
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):
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