Skip to content

Commit

Permalink
webpack.dev//webpack.prod: update require so doesn't break with update
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillippa authored and philli-m committed Jul 9, 2020
1 parent 5f751ac commit a021cfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webpack.dev.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const merge = require('webpack-merge')
const { merge } = require('webpack-merge')
const common = require('./webpack.common.js')

module.exports = merge(common, {
Expand Down
2 changes: 1 addition & 1 deletion webpack.prod.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const common = require('./webpack.common.js')
const merge = require('webpack-merge')
const { merge } = require('webpack-merge')
const TerserPlugin = require('terser-webpack-plugin')

module.exports = merge(common, {
Expand Down

0 comments on commit a021cfd

Please sign in to comment.