Hello guys, I have a Larvale 9 project that require:
npm run build
this command in my laptop works correctly. When I deploy to App Platform I have the following error:
error during build: RangeError: Maximum call stack size exceeded at String.match (<anonymous>) at _interpolate (/workspace/node_modules/vite/dist/node-cjs/publicUtils.cjs:4140:28) at /workspace/node_modules/vite/dist/node-cjs/publicUtils.cjs:4176:15 at Array.reduce (<anonymous>) at _interpolate (/workspace/node_modules/vite/dist/node-cjs/publicUtils.cjs:4142:18) at /workspace/node_modules/vite/dist/node-cjs/publicUtils.cjs:4176:15 at Array.reduce (<anonymous>) at _interpolate (/workspace/node_modules/vite/dist/node-cjs/publicUtils.cjs:4142:18) at /workspace/node_modules/vite/dist/node-cjs/publicUtils.cjs:4176:15 at Array.reduce (<anonymous>)
Node and NPM are the same versions in laptop and app platform. Any ideas? Thanks!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
The
Maximum call stack size exceeded
error indicates that the build process might be running out of memory.What I could suggest is try to use a larger container instance and try to re-deploy your project so that there is enough memory for the build process.
Let me know how it goes!
Best,
Bobby