在 Ionic 框架中编译 SASS 时包含 Compass?
include Compass in compiling SASS in Ionic framework?
有人知道如何在 Ionic 2 项目中包含指南针吗?
我尝试导入指南针-sass,但我找不到在我的样式中设置指南针预处理的路径。
正如本文所指出的Whosebug answer use this Compass lib
我是如何在我的 Ionic 2+ 项目中实现的。
- 通过 npm 安装 -
npm install compass-sass-mixins
- 通过在文件
app.scss
中添加 @import "../../node_modules/compass-sass-mixins/lib/compass";
导入到我的项目
- 然后运行
ionic serve
希望这有助于实现有用的混合
有人知道如何在 Ionic 2 项目中包含指南针吗?
我尝试导入指南针-sass,但我找不到在我的样式中设置指南针预处理的路径。
正如本文所指出的Whosebug answer use this Compass lib
我是如何在我的 Ionic 2+ 项目中实现的。
- 通过 npm 安装 -
npm install compass-sass-mixins
- 通过在文件
app.scss
中添加 - 然后运行
ionic serve
@import "../../node_modules/compass-sass-mixins/lib/compass";
导入到我的项目
希望这有助于实现有用的混合