2016-09-19 55 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" 
     ] 
    } 
    } 
} 
相關問題