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 8b6dc81 commit d400119Copy full SHA for d400119
content/guides/code-splitting.md
@@ -69,15 +69,15 @@ module.exports = {
69
index: './src/index.js',
70
another: './src/another-module.js'
71
},
72
- output: {
73
- filename: '[name].bundle.js',
74
- path: path.resolve(__dirname, 'dist')
75
- },
76
plugins: [
77
new HTMLWebpackPlugin({
78
title: 'Code Splitting'
79
})
80
- ]
+ ],
+ output: {
+ filename: '[name].bundle.js',
+ path: path.resolve(__dirname, 'dist')
+ }
81
};
82
```
83
content/guides/lazy-loading.md
@@ -67,7 +67,7 @@ __src/index.js__
67
+ var print = module.default;
68
+
+ print();
-+ })
++ });
return element;
}
0 commit comments