そのため、プロジェクトで LiteServer を使用しようとしていますが、 のデフォルト ウォッチを変更することができません。index.html
現在のファイルはindex1.html
. app2.js
でエントリーポイントに指定したnpm init
ので、JSのデフォルトは変更できましたが、HTMLは変更できませんでした。
> 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] ] } }
[BS] Access URLs:
--------------------------------------
Local: http://localhost:3000
External: http://10.40.244.189:3000
--------------------------------------
UI: http://localhost:3001
UI External: http://10.40.244.189:3001
--------------------------------------
[BS] Serving files from: ./
[BS] Watching files...
16.12.21 18:43:32 200 GET /index.html
16.12.21 18:43:32 200 GET /style.css
16.12.21 18:43:33 200 GET /app2.js
16.12.21 18:43:34 404 GET /favicon.ico
ドキュメントがファイルの使用について言及していることは知ってbs-config.json
いますが、この構文を持つリファレンスを取得できませんでした。
助けていただければ幸いです!
更新 - 私は現在これをbs-config.json
ファイルに持っていますが、使用しません -
{
"files": ["style.css", "app2.js", "index1.html"]
}