Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
melledijkstra committed Oct 30, 2024
1 parent 87f2a92 commit 89cb63e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ type DynamicCDNEntry = {

// DynamicCdnWebpackPlugin settings
// these settings help us load 'react', 'react-dom' and the packages defined below from a CDN
const DynamicCdnWebpackPluginConfig = {
const DynamicCDNWebpackPluginConfig = {
// set "verbose" to true to print console logs on CDN usage while webpack builds
verbose: process.env.VERBOSE ? true : false,
only: [
Expand Down Expand Up @@ -239,7 +239,7 @@ const clientConfigs = clientEntrypoints.map<Configuration>(
inject: 'body',
}),
// this plugin allows us to add dynamically load packages from a CDN
new DynamicCDNPlugin(DynamicCdnWebpackPluginConfig),
new DynamicCDNPlugin(DynamicCDNWebpackPluginConfig),
// add the generated js code to the html file inline
new HtmlInlineScriptPlugin(),
],
Expand Down

0 comments on commit 89cb63e

Please sign in to comment.