我有一个使用 vanilla 的现有项目,SASS
我想将Compass添加到其中。我过去使用过 Compass,但只将它与compass create
命令一起使用。
我正在寻找一种能够通过仅导入与其关联的 SCSS 文件来利用指南针功能的方法,而不必遵守它提供的结构。
我怎样才能做到这一点?
我有一个使用 vanilla 的现有项目,SASS
我想将Compass添加到其中。我过去使用过 Compass,但只将它与compass create
命令一起使用。
我正在寻找一种能够通过仅导入与其关联的 SCSS 文件来利用指南针功能的方法,而不必遵守它提供的结构。
我怎样才能做到这一点?
在独立项目中,您需要的只是 gem 和config.rb
. 我将配置文件从一个项目复制/粘贴到另一个项目,然后调整插件要求和文件结构等设置。你可以使用任何你喜欢的结构,只要你在配置文件中设置它。
这是我当前项目之一的示例:
# Compass CSS framework config file
require 'susy'
require 'modular-scale'
require 'sassy-buttons'
require 'breakpoint'
require 'compass-css-arrow'
require 'rgbapng'
# Require any additional compass plugins here.
project_type = :stand_alone
# Set this to the root of your project when deployed:
http_path = "/"
sass_dir = "sass"
css_dir = "static/css"
images_dir = "static/images"
fonts_dir = "static/fonts"
javascripts_dir = "static/js"
line_comments = false
preferred_syntax = :scss
output_style = :expanded
relative_assets = true
根据指南针文档,您可以使用
compass init rails path/to/project [--using blueprint]