How to run grunt server in dist directory instead of app directory?

前端 未结 4 989
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-13 18:26

After grunt building my AngularJS app to my dist directory, I would like to test it out with grunt server. Problem is that grunt

4条回答
  •  粉色の甜心
    2020-12-13 19:03

    Whether or not you could do it isn't important. What is important is that you should not use grunt server for this. The server task in grunt as you can see does many things that you don't need in a dist folder, as well as the fact that they will all be hard coded for your app folder.

    If you just want to try out the result of the dist folder, what you should do is just cd into the dist directory and then start a simple HTTP server like the one that comes with python.

    python -m SimpleHTTPServer
    

    That should start a small server for you to try the dist directory out.

提交回复
热议问题