Is there functionality like `webpack.config.d` for...
# javascript
j
Is there functionality like
webpack.config.d
for
webpack-dev-server-run.js
, or a way to otherwise manually configure the server for the kotlin frontend gradle plugin?
v
You can use config.devServer option in your webpack.config.d directory.
Copy code
config.devServer = { ... }
👍🏻 1
b
cc @cy
j
This worked, perfect! Thanks!