有一个奇怪的问题。
我正在使用SASS,我安装了罗盘,但不需要使用它,因为我有LiveReload。
使用LiveReload我已将脚本粘贴到我的index2.html文件中。然后在输出路径中,我将sass / main.scss文件夹定位到css / main.css文件夹。但由于某种原因,它仍然输出到样式表文件夹。
这让我疯了,如何强制SASS或lifereload以确保我输出到正确的文件夹?我从未创建样式表文件夹,当我删除并进行更改并保存我的main.scss文件时,它会重新创建stylesheets文件夹并将main.css放入X_X
中编辑:我相信它是这个python项目中的某个配置文件。我找到了一个config.rb文件,但路径似乎很好,所以它必须是某个地方的另一个设置......我要继续寻找,或者我可以在周一问Python开发
config.rb
# Require any additional compass plugins here.
require 'compass/util'
require 'compass/browser_support'
require 'compass/sass_extensions'
require 'compass/version'
require 'compass/errors'
require 'compass_twitter_bootstrap'
require 'breakpoint'
require 'toolkit'
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "css"
sass_dir = "sass"
images_dir = "img"
javascripts_dir = "scripts/js"
environment = :production
output_style = (environment == :production) ? :compressed : :expanded
答案 0 :(得分:1)
问题在于它是如何由以前的开发人员设置的,而不是他造成了错误,这只是他设置它的方式。
我创建了一个新文件夹并将我的文件移到那里,现在我在SASS文件夹中的SCSS文件正确编译到CSS文件夹中。
答案 1 :(得分:0)
只需使用您所说的相应样式文件夹更改指向css的链接即可。这不是一个快速的解决方案吗?