2016-09-19 58 views
0

BS-config.jsonBrowserstack不是默认服务的index.html

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

当我加载本地主机:8000 /我的应用程序内它说Cannot GET /my-app,但加载本地主机:8000 /我的 - app/index.html的作品。

这还不算捡本地主机:8000 /我的应用程序内/指数或Javascript文件的index.html尝试加载,除非我明确地把.js扩展。

回答

0

按照options guide,也许你可以试试这个配置:

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