Using Webpack in the Build Pipeline
Support Articlehttps://www.deployhq.com/support/build-errors/webpack
In order to be able to use [Webpack](https://webpack.js.org/) to build your node projects, you will need … to first add this step: ```bash npm ci NODE_ENV=production node_modules/webpack/bin/webpack.js … It takes modules as input and generates static assets like bundles (e.g., .js, .css) that are ready to … be deployed to a production server.
Updated 22nd Oct 2024