Mohamed Aboelfotoh
Published in : 2022-02-11
I understand that all the SASS files that I code in a project are compiled into one main CSS file.
I want to know do I need to upload all the files to the project folder in the host, or just the main CSS file?
And If I will upload the CSS file, Do I still need to keep the 2 highlighted lines in the package.json?
Join our community and get the chance to solve your code issues & share your opinion with us
Sign up Now
Great Coder Date : 2022-02-12
Best answers
1
Best answers
1
The HTML files will make reference to the CSS file not the SCSS or SASS files. So that's the one, the CSS file I mean, you'll need to put on your hosting.
There's no need to submit any sass files to the server if you're not going to do the compilation on it. And in this case you won't need the script nor the sass dependency lines in the package.json file.
But if you are making a big project with a lot of dependencies you better keep make all the compilation as a one step on the server.