lite-server 似乎忽略了我覆盖默认索引的尝试。
我有 bs-config.json:
{
"server": {
"baseDir": "src",
"index": "/index.3.html",
"routes": {
"/node_modules": "node_modules"
}
}
}
我正在使用 lite-server 版本 2.3.0,如下所示:
> lite-server -c=bs-config.json
browser-sync config **
{ injectChanges: false,
files: [ './**/*.{html,htm,css,js}' ],
watchOptions: { ignored: 'node_modules' },
server:
{ baseDir: 'src',
middleware: [ [Function], [Function] ],
directory: true,
index: '/index.3.html',
routes: { '/node_modules': 'node_modules'
}
}
}
在上面的控制台日志输出中,它识别出 bs-config.json 索引默认为“index.3.html”,但是,当浏览器请求“GET http://localhost ”时,控制台显示它正在尝试提供索引.html 而不是 index.3.html。
[Browsersync] Serving files from: src
[Browsersync] Watching files...
17.09.04 22:35:51 404 GET /index.html
我也尝试过提供 bs-config.js:
"use strict";
module.exports = {
"server": {
"baseDir": "src",
index: "i/index.3.html",
"directory":true,
"routes": {
"/node_modules": "node_modules"
}
// middleware,: {
// // overrides the second middleware default with new settings
// 1: require('connect-history-api-fallback')({index: '/index.3.html', verbose: true})
// }
}
}
并运行 lite-server:
> lite-server -c=bs-config.js
但行为是一样的。
问题:如何为 lite-server 覆盖 bs-config 的 server.index?