Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Advanced Sass Getting Started Debugging

does chrome need to be the default browser in order to use this?

in order to use source maps with workspace and the simple server

2 Answers

Chris Shaw
Chris Shaw
26,676 Points

Hi loriortiz2,

Simple answer is no it doesn't, Firefox also has source maps which are named slightly different but you can see the below link for information about enabling them.

https://hacks.mozilla.org/2014/02/live-editing-sass-and-less-in-the-firefox-developer-tools/

As for the server you can use it in any browser on any operating system.

thanks a lot for the quick response. But only way to specify that chrome come up is to have it as default browser, right? Otherwise localhost: opens in my default browser (Safari) and I need to paste the URL into Chrome if I want to use that

Chris Shaw
Chris Shaw
26,676 Points

No, the simple python server doesn't open any browser by default, when you create it all you're doing is simply opening a new connection to port XXXX which in the video was 8000 so you still need to manually open your browser of preference and navigate to http://localhost:8000

thanks very much.