Browserstack默认不提供index.html

时间:2016-09-19 20:28:07

标签: browser-sync

BS-config.json

{
  "port": 8000,
  "server": {
    "baseDir": "./dist",
    "serveStaticOptions": {
      "extensions": [
        "html",
        "js"
      ]
    }
  },
  "startPath": "/my-app"
}

当我加载 localhost:8000 / my-app 时,它显示Cannot GET /my-app,但加载 localhost:8000 / my-app / index.html 有效。

除非我明确提出,否则它还没有选择 localhost:8000 / my-app / index index.html 尝试加载的Javascript文件.js扩展程序。

1 个答案:

答案 0 :(得分:0)

根据options guide,也许你可以尝试这个配置:

{
  "port": 8000,
  "server": {
    "baseDir": "./dist/my-app",
    "index": "index.html",
    "serveStaticOptions": {
      "extensions": [
        "html",
        "js"
      ]
    }
  }
}