Last active
March 21, 2019 16:05
-
-
Save misterdev/8600f44658214708cbadcf6bec444105 to your computer and use it in GitHub Desktop.
1.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
constructor(args, opts) { | |
super(args, opts); | |
opts.env.configurations = { | |
// => each key inside this object will generate a webpack | |
// => configuration file | |
dev: { | |
topScope: [ | |
// => We will place here any code like | |
// => function definitions and imports | |
// => that we use in our configuration | |
], | |
webpackOptions: { | |
// => This is a webpack configuration | |
} | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment