We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0730fa commit 70882e3Copy full SHA for 70882e3
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "laravel-mix",
3
- "version": "1.0.4",
+ "version": "1.0.5",
4
"description": "Laravel Mix is an elegant wrapper around Webpack for the 80% use case.",
5
"main": "src/index.js",
6
"scripts": {
src/builder/webpack-plugins.js
@@ -24,9 +24,10 @@ module.exports = function () {
24
25
26
// Add support for webpack 3 scope hoisting.
27
- plugins.push(
28
- new webpack.optimize.ModuleConcatenationPlugin()
29
- );
+ // Current disabled due to: https://github.com/webpack/webpack/issues/5132
+ // plugins.push(
+ // new webpack.optimize.ModuleConcatenationPlugin()
30
+ // );
31
32
33
// Activate support for Mix_ .env definitions.
0 commit comments