Nikolay

Results 285 comments of Nikolay

@Iuriy-Budnikov Is this when using `UNIVERSAL_WEBPACK_CSS_LOADER_V2` env variable?

@Iuriy-Budnikov Actually, turns out that `exportOnlyLocals` is not a loader but is an option. I'll fix the code.

@Iuriy-Budnikov Released `[email protected]`.

@kungfutse Thanks. Actually I didn't understand anything from your comment because I haven't worked with `react-loadable` and "dynamic imports" using this library yet. I am planning to practice that by...

@KITSMalinnaLeach Seems that @kungfutse replaced `[name]` with `${output_file_name}` in two places. And what was your approach?

Before releasing a fix it would have to be tested. I currently don't have a simple project with "dynamic" imports for testing so I haven't released any fix so far.

The only supported way is through Webpack `output.publicPath`.

I didn't work with Docker so I'm not an expert on it. Dunno.

@jarzuaga Why don't you just compile the bundle with Webpack config `publicPath` set to a CDN?

@jarzuaga I see now. The assets source from webpack stats has shape: ```js module.exports = __webpack_public_path__ + \"9059f094ddb49c2b0fa6a254a6ebf2ad.jpg\" ``` `__webpack_public_path__` is defined at: https://github.com/catamphetamine/webpack-isomorphic-tools/blob/59aa50fbde327ec0921a9acd370868851260a4e0/source/plugin/write%20assets.js#L167-L169 `write_assets()` is called here: https://github.com/catamphetamine/webpack-isomorphic-tools/blob/59aa50fbde327ec0921a9acd370868851260a4e0/source/plugin/plugin.js#L190-L193 So,...