0

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

1 回答 1

0

lite-server 基于 BrowserSync。bs-config.js 是 browsersync 的配置文件。配置选项记录在这里: https ://browsersync.io/docs/options

例如,要将默认索引设置为 index1.html,而不是在路由中设置它,bs-config.json 可以包含:

{
  "server": {
    "baseDir": "src",
    "index": "/index1.html",
    "routes": {
      "/node_modules": "node_modules"
    }
  }
}
于 2017-09-05T03:05:21.863 回答