Webpack
Wrangler allows you to develop modern ES6 applications with support for modules. This support is possible because of Wrangler’s webpack ↗ integration. This document describes how Wrangler uses webpack to build your Workers and how you can bring your own configuration.
This is the default webpack configuration that Wrangler uses to build your Worker:
The "main"
field in the package.json
file determines the entry
configuration value. When undefined or missing, "main"
defaults to index.js
, meaning that entry
also defaults to index.js
.
The default configuration sets target
to webworker
. This is the correct value because Cloudflare Workers are built to match the Service Worker API ↗. Refer to the webpack documentation ↗ for an explanation of this target
value.
You can tell Wrangler to use a custom webpack configuration file by setting webpack_config
in your wrangler.toml
file. Always set target
to webworker
.
It is possible to use different webpack configuration files within different Wrangler environments. For example, the "webpack.development.js"
configuration file is used during wrangler dev
for development, but other, more production-ready configurations are used when building for the staging or production environments:
Wrangler commands are run from the project root. Ensure your entry
and context
are set appropriately. For a project with structure:
The corresponding webpack.config.js
file should look like this:
When you want to bring your own implementation of an existing global API, you may shim ↗ a third-party module in its place as a webpack plugin.
For example, you may want to replace the URL
global class with the url-polyfill
npm package. After defining the package as a dependency in your package.json
file and installing it, add a plugin entry to your webpack configuration.
If you are using wrangler@1.6.0
or earlier, a webpack.config.js
file at the root of your project is loaded automatically. This is not always obvious, which is why versions of Wrangler after wrangler@1.6.0
require you to specify a webpack_config
value in your wrangler.toml
file.
When upgrading from wrangler@1.6.0
, you may encounter webpack configuration warnings. To resolve this, add webpack_config = "webpack.config.js"
to your wrangler.toml
file.