universal-webpack
universal-webpack copied to clipboard
Isomorphic Webpack: both on client and server
This PR adds an option to filter non-initial chunks that are loaded dynamically.
https://github.com/catamphetamine/universal-webpack/blob/a5f30556af5cc658acb5189c7f10a5643c085a3a/source/server%20configuration.js#L325-L331 > https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md#200-2018-12-07 > css-loader/locals was dropped in favor exportOnlyLocals option
This happens at least in the following scenario: Using custom renderer with react-loadable, the generated output filename is picked from one the splitted chunks when webpack encounters first dynamic import...
My webpack dev config contains: ```javascript new webpack.DllReferencePlugin({ context: path.join(__dirname, '../'), manifest: require( '../static/dist/manifests/vendor-manifest.json', ), }), ``` (this file exists) - the webpack client and server watchers seem to be...
Hello, can you help me? my config ``` const path = require('path'); const webpack = require('webpack'); const helpers = require('./helpers'); const { CleanWebpackPlugin } = require('clean-webpack-plugin'); const NodePolyfillPlugin = require("node-polyfill-webpack-plugin")...