The contentBase in that configuration is '.' so everything under the root directory is served by webpack dev server.
So it is not really serving static assets from two separate directories.
However, if you really want to serve static assets from multiple directories, you can do it by injecting express static middleware through devServer.before (or after) hook. Webpack dev server is basically an express server, so you can inject any express middlewares into that.