Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
Do not use duplicate variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed Sep 10, 2017
1 parent ec14fa8 commit dcb47de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ module.exports = {
// This example shows how to add css-mqpacker
// Default plugins are outlined below
postCss(loader, defaultPlugins) {
const defaultPlugins = defaultPlugins()
defaultPlugins.push(require('css-mqpacker')())
const plugins = defaultPlugins()
plugins.push(require('css-mqpacker')())

return defaultPlugins
return plugins
},
// Allows you to define custom WebPack properties
// `config` is a WebPack config object
Expand Down

0 comments on commit dcb47de

Please sign in to comment.