About Webpack is a module bundler, which generates static assets from modules with HTML, JS, CSS, images etc... Webpack uses Node.js package to generate files. Webpack analyses the project with all imports and build bundle files, which are connected to index.html . All our modules are attached in organized order in bundle.js file. Problems solves circular imports run SASS run Babel Loaders & plugins Webpack uses loaders & plugins to compile code: js-loader style-loader other-loaders ES6 to ES5 Let's make a simple ES6 javascript with SCSS files, which we want to transpile into ES5 and to attach to an html file. <!-- template.html --> <!DOCTYPE html> <html lang="en"> <head> <title>Webpack</title> </head> <body> <h1>Webpack</h1> </body> </html> // hello.js export const hello = (str = 'John') => alert(str) // style.scss body { background: rgb(20 136 68 / 26%); h1 { color: brown; } } // js.js import { hello } from './hello' import './style.scss' hello() Installation Install webpack with npm i -D webpack webpack-cli Install babel loader npm i -D babel-loader @babel/core @babel/preset-env webpack Install css loader + sass plugin npm i -D style-loader css-loader sass-loader sass mini-css-extract-plugin Install html plugin npm i -D html-webpack-plugin Configuration Configure a webpack script in package.json file. // package.json (btw, it is not a valid comment in .json) "scripts": { "start": "react-scripts start", "webpack": "webpack --config src/components/PostsFeed/posts/webpack/webpack.config.js --watch" } Create configuration file webpack.config.js // webpack.config.js const path = require('path') const MiniCssExtractPlugin = require('mini-css-extract-plugin') const HtmlWebpackPlugin = require('html-webpack-plugin') module.exports = { mode: 'none', entry: path.resolve(__dirname, 'input', 'js.js'), devtool: 'source-map', output: { path: path.resolve('public', 'webpack'), filename: 'bundle.[contenthash].js', }, plugins: [ new MiniCssExtractPlugin({ filename: 'styles.[contenthash].css', }), new HtmlWebpackPlugin({ template: path.resolve(__dirname, 'input', 'template.html'), title: 'Webpack generated file', filename: 'index.html', inject: 'head', scriptLoading: 'defer' }) ], module: { rules: [ { test: /\.m?js$/, exclude: /(node_modules)/, use: { loader: 'babel-loader', options: { presets: ['@babel/preset-env'], }, }, }, { test: /\.css$/i, use: [MiniCssExtractPlugin.loader, 'css-loader'], }, { test: /\.s[ac]ss$/i, use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'], }, ], }, } Launch Webpack Run the script by npm run webpack Result .css & .js files are bundled from the main entry folder input/ into public/webpack/ folder and attached to generated index.html from the template .html file. File index.html includes the bundle.js & styles.css files. <!-- webpack.html --> <!DOCTYPE html> <html lang="en"> <head> <title>Webpack</title> <script defer src="bundle.d0c4f806f91fc2ce54e6.js"></script><link href="styles.751aa21939e33273bb6d.css" rel="stylesheet"></head> <body> <h1>Webpack</h1> </body> </html> /* styles.751aa21939e33273bb6d.css */ body { background: rgba(20, 136, 68, 0.26); } body h1 { color: brown; } /*# sourceMappingURL=styles.751aa21939e33273bb6d.css.map*/ // bundle.d0c4f806f91fc2ce54e6.js /******/ (function() { // webpackBootstrap /******/ "use strict"; /******/ var __webpack_modules__ = ([ /* 0 */, /* 1 */ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "hello": function() { return /* binding */ hello; } /* harmony export */ }); var hello = function hello() { var str = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'John'; return alert(str); }; /***/ }), /* 2 */ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) { __webpack_require__.r(__webpack_exports__); // extracted by mini-css-extract-plugin /***/ }) /******/ ]); /************************************************************************/ /******/ // The module cache /******/ var __webpack_module_cache__ = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ var cachedModule = __webpack_module_cache__[moduleId]; /******/ if (cachedModule !== undefined) { /******/ return cachedModule.exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = __webpack_module_cache__[moduleId] = { /******/ // no module.id needed /******/ // no module.loaded needed /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /************************************************************************/ /******/ /* webpack/runtime/define property getters */ /******/ !function() { /******/ // define getter functions for harmony exports /******/ __webpack_require__.d = function(exports, definition) { /******/ for(var key in definition) { /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); /******/ } /******/ } /******/ }; /******/ }(); /******/ /******/ /* webpack/runtime/hasOwnProperty shorthand */ /******/ !function() { /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } /******/ }(); /******/ /******/ /* webpack/runtime/make namespace object */ /******/ !function() { /******/ // define __esModule on exports /******/ __webpack_require__.r = function(exports) { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ }(); /******/ /************************************************************************/ var __webpack_exports__ = {}; // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk. !function() { __webpack_require__.r(__webpack_exports__); /* harmony import */ var _hello__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1); /* harmony import */ var _style_scss__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(2); (0,_hello__WEBPACK_IMPORTED_MODULE_0__.hello)(); }(); /******/ })() ; //# sourceMappingURL=bundle.d0c4f806f91fc2ce54e6.js.map Note that .js & .css files have hashes in their file names before extensions, which is very nice, because it eliminate the problem with unwanted browser caching.