In my render function I am using locals to dynamically generate the filenames of my assets.
I create .css assets using the ExtractTextWebpackPlugin and noticed that they do not exist in locals.assets, which seems to only contain my .js assets.
I can find my .css assets when I look in locals.webpackStats.compilation.assets, however.
Seeing this issue as well -- will use webpackStats for now as a workaround but it would be nice to fix this for locals.assets rather than having to dig into stats.
Howdy,
In my render function I am using
locals
to dynamically generate the filenames of my assets.I create
.css
assets using the ExtractTextWebpackPlugin and noticed that they do not exist inlocals.assets
, which seems to only contain my.js
assets.I can find my
.css
assets when I look inlocals.webpackStats.compilation.assets
, however.Is this expected functionality?
Cheers!