gpt4 book ai didi

node.js - Foundation 使用 Libsass 导入,node-sass-middleware 未编译

转载 作者:太空宇宙 更新时间:2023-11-04 03:31:30 26 4
gpt4 key购买 nike

我使用 Node.js 和 Express 作为我的应用程序的基础,并尝试使用 npm 包 node-sass-middleware 进行 sass 编译,使用 foundation-sites 作为基础 scss 源。

我的 app.js 包含以下内容,

var sass = require('node-sass');
var sassMiddleware = require('node-sass-middleware');

app.use(sassMiddleware({
src: path.join(__dirname,'scss'),
dest: path.join(__dirname,'public/css'),
prefix: '/css',
includePaths:[path.join(__dirname, 'node_modules/foundation-sites/scss/')], //Make sure we include the foundation library. ^-^;
debug: true,
outputStyle: 'extended'

}));
app.use(express.static(path.join(__dirname, 'public')));

我的 style.scss 看起来像:

@import 'foundation';

@import 'stuff'; /*Testing imports functionality*/

body{

color:black; /*Just for testing compilation*/

}

stuff.scss 看起来像:

somerandomtag{

@extend body;
border:5px solid black;

}

在我的layout.jade中添加了

link(rel='stylesheet', href='/css/style.css')

当我刷新页面时,我可以在日志中看到以下输出:

GET /login 200 356.910 ms - 511 source: F:\Users\trutt\Documents\Projects\MyProject\scss\style.scss dest: F:\Users\trutt\Documents\Projects\MyProject\public\css\style.css
read: F:\Users\trutt\Documents\Projects\MyProject\public\css\style.css GET /js/jquery.cookie.js 304 7.621 ms - - GET /css/style.css - - ms - - render: F:\Users\trutt\Documents\Projects\MyProject\scss\style.scss source: F:\Users\trutt\Documents\Projects\MyProject\scss\style.scss dest: F:\Users\trutt\Documents\Projects\MyProject\public\css\style.css GET /css/style.css 200 7.127 ms - 269

所有最终结果都是编译后的 style.css:

/**
* Foundation for Sites by ZURB
* Version 6.2.1
* foundation.zurb.com
* Licensed under MIT Open Source
*/
somerandomtag {
border: 5px solid black; }

/*Testing imports functionality*/
body, somerandomtag {
color: black;
/*Just for testing compilation*/ }

基础本身的标题是可见的,这告诉我我的包含路径正在工作。我已经证明 Sass 似乎可以通过编译检查和导入测试以及继承来工作。但是...所有基础 CSS 规则在哪里?我错过了什么吗?

所有安装的软件包都是在过去 24 小时内直接从 npm 全新安装的,因此我假设我正在使用最新的 npm 软件包版本。

最佳答案

在使用不同的 sass/gulp/gem 替代品几个小时后,我发现了我的问题。

我正在探索 npm 包中的基础站点中包含的文件。

似乎像在 app.js 中一样更改了以下内容

includePaths:[path.join(__dirname, 'node_modules/foundation-sites/scss/')],

includePaths:[path.join(__dirname, 'node_modules/foundation-sites/assets/')],

解决了问题。

我相信这是因为上述资源路径中的文件foundation.scss包含

@import '../scss/foundation';

@include foundation-everything;

我认为底线是造成差异的原因。/scss/文件夹中的其他文件可能不包含 Foundation-everything。我认为这是编译后的基础 css 的主包含。

再次,建立了关于为什么以及如何工作的假设,但是通过 Express 上的 NPM 使用 Node-sass-middleware 的 Foundation 文档很少,并且通过上述修改解决了这个问题。

关于node.js - Foundation 使用 Libsass 导入,node-sass-middleware 未编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36905155/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com