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 006921a commit fb934e0Copy full SHA for fb934e0
webpack.dev.js
@@ -13,7 +13,7 @@ module.exports = merge(common, {
13
contentBase: path.join(__dirname, 'docs/build/html'),
14
watchContentBase: true,
15
compress: false,
16
- port: 7070,
+ port: 1919,
17
hot: false,
18
liveReload: true,
19
publicPath: '/_static/'
@@ -26,7 +26,9 @@ module.exports = merge(common, {
26
]
27
}),
28
new ShellPlugin({
29
- onBuildEnd: ['make -C docs html'],
+ onBuildEnd: ['make -C docs clean html'],
30
+ // dev=false here to force every build to trigger make, the default is
31
+ // first build only.
32
dev: false,
33
34
0 commit comments