We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a353f06 commit d5d1fc6Copy full SHA for d5d1fc6
1 file changed
packages/feature-flags-webpack-plugin/src/index.ts
@@ -16,7 +16,7 @@ type PluginOptions = {
16
17
class FeatureFlagsWebpackPlugin {
18
constructor(public options: PluginOptions) {
19
- Object.assign(this.options, { isFeatureEnabledFnName: 'isFeatureEnabled' })
+ this.options = Object.assign({ isFeatureEnabledFnName: 'isFeatureEnabled' }, this.options)
20
}
21
22
apply(compiler: Compiler) {
0 commit comments