4

index.html ファイルに変更を加えても、Lite Server がページをリロードしません。

bs-config.json ファイルを使用していません。次を使用してライトサーバーを起動すると、index.htmlが新しいタブで正しく開きます。

npm run dev

このコンソール情報が役立つ場合があります。

> lite@1.0.0 dev C:\test\lite
> lite-server

Did not detect a `bs-config.json` or `bs-config.js` override file. Using lite-server defaults...
** browser-sync config **
{ injectChanges: false,
  files: [ './**/*.{html,htm,css,js}' ],
  watchOptions: { ignored: 'node_modules' },
  server: { baseDir: './', middleware: [ [Function], [Function] ] } }
[Browsersync] Access URLs:
 -------------------------------------
       Local: http://localhost:3000
    External: http://192.168.1.39:3000
 -------------------------------------
          UI: http://localhost:3001
 UI External: http://localhost:3001
 -------------------------------------
[Browsersync] Serving files from: ./
[Browsersync] Watching files...
19.07.26 21:02:27 304 GET /index.html
[Browsersync] Reloading Browsers...

私のindex.htmlを変更して保存するとき、

[BrowserSync] 'Reloading Browsers' 

コンソールに表示されますが、ページがリロードされません。F5を押してから

19.07.26 21:09:32 200 GET /index.html

私のコンソールに表示されます。

パッケージ.json:

{
  "name": "lite",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
      "dev": "lite-server"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "lite-server": "^2.5.3"
  }
}

Lite Server でページをホット リロードするにはどうすればよいですか?

4

1 に答える 1