我決定開始學習青菜,但我仍然在掙扎了一下對我的PC.I下載運行青菜和已經安裝了的圖片顯示:如何觀看SASS文件
我擁有該項目的文件夾位於xampp文件夾中的htdocs文件夾內。 我在命令行輸入了C:\ Users \ Thulani> sass --watch C:\ xampp \ htdocs \ ruby \ lib \ sass \ style.scss:style.css,但它只能說sass正在監視更改。
如何,實際上可以在我的style.scss的變化,看到這些變化?
這裏我的html:
<html>
<head>
<title> Import example of sass</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h1>Simple Example</h1>
<h3>Welcome to TutorialsPoint</h3>
</body>
</html>
請幫
你試過更改您的style.scss?如果您正在運行'--watch'任務,則對輸入所做的任何更改都將被編譯並輸出到您選擇的目標。 http://sass-lang.com/documentation/file.SASS_REFERENCE.html#using_sass – imjared
是的,我嘗試改變style.scss上的內容,但沒有任何反應 –