所以我试图在我的项目中使用 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"]
}