LoginSignup
0
1

More than 5 years have passed since last update.

vue-cliのHot ReloadがVagrant上で動かないときの対応

Last updated at Posted at 2017-08-07

Webpackでのファイル更新を監視する

  • build/dev-webpack.jsのdevMiddlewareに watchOptionsを以下のように追加します。
ファイル更新チェック
var devMiddleware = require('webpack-dev-middleware')(compiler, {
  publicPath: webpackConfig.output.publicPath,
  quiet: true,
  watchOptions: {
    aggregateTimeout: 300,
    poll: true
  }
})

ファイルが更新されたかどうかを確認するためのポーリングの設定を行うことでHot Reloadを機能させます。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1