Top "Webpack" questions

Webpack is a static module bundler for modern JavaScript applications.

How to make the webpack dev server run on port 80 and on 0.0.0.0 to make it publicly accessible?

I am new to the whole nodejs/reactjs world so apologies if my question sounds silly. So I am playing …

node.js reactjs npm webpack webpack-dev-server
How to include bootstrap css and js in reactjs app?

I am newb to reactjs, I want to include bootstrap in my react app I have installed bootstrap by npm …

twitter-bootstrap reactjs webpack
Error: Cannot find module 'webpack'

I'm just getting started with webpack and am having difficulty getting the multiple-entry-points sample to build. The webpack.config.js …

node.js webpack
How to bundle an Angular app for production

What is the best method to bundle Angular (version 2, 4, 6, ...) for production on a live web server. Please include the Angular …

angular webpack systemjs angular-cli
How to build minified and uncompressed bundle with webpack?

Here's my webpack.config.js var webpack = require("webpack"); module.exports = { entry: "./entry.js", devtool: "source-map", output: { path: "./dist", filename: "…

javascript node.js webpack
How to add font-awesome to Angular 2 + CLI project

I'm using Angular 2+ and Angular CLI. How do I add font-awesome to my project?

angular webpack angular-cli
Resolving require paths with webpack

I'm still confused how to resolve module paths with webpack. Now I write: myfile = require('../../mydir/myfile.js') but …

javascript webpack
Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema

I have this simple helloworld react app created from an online course, however I get this error: Invalid configuration object. …

reactjs typescript webpack
The create-react-app imports restriction outside of src directory

I am using create-react-app. I am trying to call an image from my public folder from a file inside my …

javascript reactjs webpack create-react-app
How do I generate sourcemaps when using babel and webpack?

I'm new to webpack, and I need a hand in setting up to generate sourcemaps. I'm running webpack serve from …

javascript webpack build-process babeljs source-maps