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

Commit

Permalink
Merge pull request #431 from daltones/patch-1
Browse files Browse the repository at this point in the history
Fix "Multiple Instances" example
  • Loading branch information
bebraw committed Feb 26, 2017
2 parents 36d0494 + df74d40 commit 7c65449
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ There is also an `extract` function on the instance. You should use this if you
const ExtractTextPlugin = require('extract-text-webpack-plugin');

// Create multiple instances
const extractCSS = new ExtractTextPlugin('stylesheets/[name].css');
const extractLESS = new ExtractTextPlugin('stylesheets/[name].less');
const extractCSS = new ExtractTextPlugin('stylesheets/[name]-one.css');
const extractLESS = new ExtractTextPlugin('stylesheets/[name]-two.css');

module.exports = {
module: {
Expand Down

0 comments on commit 7c65449

Please sign in to comment.