admin管理员组文章数量:1345187
I'm trying to run angular2 based first app. I followed angular2 steps. When i run mand npm start
then its giving following error in the terminal
Did not detect a bs-config.json or bs-config.js override file. Using lite-server defaults...
And also browser returning 404 error
for index.html file (angular-project/app/index.html
)
I check lite-server version is "lite-server@^2.2.0",
and npm version 3.7.3
, also i followed this accepted answer instructions but still facing same issue. Can anyone guide me how can fix it, I will appreciate. Thank You.
I'm trying to run angular2 based first app. I followed angular2 steps. When i run mand npm start
then its giving following error in the terminal
Did not detect a bs-config.json or bs-config.js override file. Using lite-server defaults...
And also browser returning 404 error
for index.html file (angular-project/app/index.html
)
I check lite-server version is "lite-server@^2.2.0",
and npm version 3.7.3
, also i followed this accepted answer instructions but still facing same issue. Can anyone guide me how can fix it, I will appreciate. Thank You.
- 1 In Wrap up section different project structure than described in question. Please ensure that you have followed tutorial correctly. – Andriy Ivaneyko Commented Jul 31, 2016 at 8:00
- 1 You have to added bs-config.js file in the directory from which you run npm start. – Arpit Agarwal Commented Jul 31, 2016 at 8:00
-
@AndriyIvaneyko Thank you so much for the guide line, i didn't added the
bs-config
in the root. Your solution is worked for me Thank You +10. – Ayaz Ali Shah Commented Jul 31, 2016 at 8:08 - @Mr.Developer Great that suggestion suits for you. Adding it as answer... – Andriy Ivaneyko Commented Jul 31, 2016 at 8:23
4 Answers
Reset to default 2In Wrap up section different project structure than described in question. Please ensure that you have followed tutorial correctly.
I see you are running lite-server 2.2.0; anyone else looking for help with this error should make sure they are running lite-server 2.0 or greater as that's when config file support was introduced.
Also, it can throw this error if there is a problem executing the bs-config.js, so check your config file for anything that could be erroring (including but not limited to syntax errors). For me I had forgotten to install the http-proxy-middleware
so lite-server errored when it tried to execute the first line of my bs-config.js, which was var proxy = require('http-proxy-midleware');
. An npm install --save-dev http-proxy-middleware
fixed this error for me.
HT: this github issue.
The reason that you have seen this warning message
Did not detect a bs-config.json or bs-config.js override file. Using lite-server defaults...
is probably that you have a definition in your package.json
which describes what should happen once you trigger the npm start
mand, like:
"scripts": {
"start": "tsc && concurrently \"tsc -w\" \"lite-server -c bs-config.json\" ",
...
}
Therefore, in short you need to either provide the bs-config.json
file with the desired browser-sync configuration or modify the the above mand.
Moreover, angular2 has now its famous quick-start example on github.
I made this account specifically to second the answer made by Patrick on July 12th.
If your bs-config cannot be found it may be because you do not have the proper packages. In my case I had http-proxy-middleware
, but was missing connect-history-api-fallback
.
Make sure to check/install all the node packages used in your bs-config!
本文标签: javascriptLiteserver does not detect a bsconfigjson or bsconfigjs override fileStack Overflow
版权声明:本文标题:javascript - Lite-server does not detect a `bs-config.json` or `bs-config.js` override file - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743744792a2531556.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论