Skip to content

Commit

Permalink
app: Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser committed Jan 13, 2021
1 parent f897b61 commit 39b088f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webpack.config.base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ export const baseConfig: webpack.Configuration = {
minimizer: [
// Avoid mangling class names as there are places we reflectively use the
// constructor name
new TerserPlugin({terserOptions: {mangle: false}}),
//
// FIXME: Not sure why webpack types are complaining here
new TerserPlugin({terserOptions: {mangle: false}}) as any,
],
},

Expand Down

1 comment on commit 39b088f

@vercel
Copy link

@vercel vercel bot commented on 39b088f Jan 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.