Load Local Css And Javascript Files When Developing, Live When Pushed To Server
I am developing in Visual Studio and am making a lot of front-end changes to websites. But because of the server setup, every time I compile it takes one minute before I can see th
Solution 1:
I use Charles Proxy for that. It allows you to map certain URIs to different URIs or local files.
So you can tell it to load specific JS / CSS files from a different location (or use a wildcard and map them in bulk).
Solution 2:
The real question here is why you are developing a website with Visual Studio.
You should setup a local HTTP server and access your site from http://localhost.
Post a Comment for "Load Local Css And Javascript Files When Developing, Live When Pushed To Server"