Hello. Is it possible to configure the webpack con...
# javascript
t
Hello. Is it possible to configure the webpack config from a gradle plugin? Otherwise every user that wants to use the plugin has to copy the config into their project webpack.config.d
b
You have two options: 1. symlink webpack.config.d 2. Point all your modules to the same webpack.config.d via
kotlin.js.<nodejs|browser>.commonWebpackConfig.configurationDir
property.
👍 1
You could hack it by including webpack configs in your plugin resources and then writing them on plugin application to your consumer's webpack
configurationDir
t
t
Does this plugin create incompatibilities with other plugins?
🚫 1