Webpack Config Generator

Generate enterprise-grade webpack.config.js files with advanced code splitting, loaders, and caching.

The starting point for the application bundler.

The name of the directory where the bundle will be generated.

- Clean the output directory before emit (Webpack 5 native).
- Transpile JavaScript using babel-loader.
- Process TypeScript files (requires ts-loader).
- Process .css files.
- Automatically generate an HTML5 file that includes all your webpack bundles.
webpack.config.js
1

Overview

Webpack is a highly configurable static module bundler for modern JavaScript applications. When webpack processes your application, it internally builds a dependency graph from one or more entry points and then combines every module your project needs into one or more bundles, which are static assets to be served from which you can load your site.