Miracle Matthew
CDCloudflare Developers
•Created by Art_Paul on 4/1/2025 in #pages-help
Pages fails to build with webpack and React
4. npm run build - you can then fetch your build and run it on Cloudflare page
8 replies
CDCloudflare Developers
•Created by Art_Paul on 4/1/2025 in #pages-help
Pages fails to build with webpack and React
3. git add package.json package-lock.json
git commit -m "Fix package-lock.json" - Use it to commit the changes to both files in your repository.
8 replies
CDCloudflare Developers
•Created by Art_Paul on 4/1/2025 in #pages-help
Pages fails to build with webpack and React
Also ensure's your package.json and package-lock.json are in sync
8 replies
CDCloudflare Developers
•Created by Art_Paul on 4/1/2025 in #pages-help
Pages fails to build with webpack and React
2. npm install - installs your packages again to generate a fresh matching package-lock.json
8 replies
CDCloudflare Developers
•Created by Art_Paul on 4/1/2025 in #pages-help
Pages fails to build with webpack and React
1. rm -rf node_modules - to remove any existing node_modules folder (locally)
8 replies
CDCloudflare Developers
•Created by Art_Paul on 4/1/2025 in #pages-help
Pages fails to build with webpack and React
The error generally means your package.json and package-lock.json have gotten out of sync. Cloudflare Pages (or any CI/CD environment) will insist they match before running npm ci. You can resolve it using these commands in the order the appear;
8 replies