如何将 SCSS 与 Express 结合使用? (节点.js)
有没有办法将 SCSS 与 Express 一起使用?
我尝试使用:
app.use(express.compiler({ src: __dirname + '/public', enable: ['scss'] }));
但它给了我一个错误:
调试:类型错误:无法读取未定义的属性“匹配”
谢谢
Is there any way to use SCSS with Express ?
I tried with :
app.use(express.compiler({ src: __dirname + '/public', enable: ['scss'] }));
But it gives me an error :
DEBUG: TypeError: Cannot read property 'match' of undefined
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法以这种方式使用它,即作为内置模块。 ExpressJS的作者自己也表示不可能。我遇到了同样的问题,发现你必须使用 SASS.js 或 LESS。
请参考:https://github.com/visionmedia/express/issues/787 < br>
我推荐你使用Stylus!
There is no way you can use it that way i.e. as a built in module. The author of ExpressJS himself said that it is not possible. I was having the same problem and found out that you either had to use SASS.js or LESS.
Refer this: https://github.com/visionmedia/express/issues/787
I recommend you to use Stylus!
看看 @ Node-sass -- NPM 包 | Github
这是 C/C++ 库 libsass 的包装器。
Take a look @ Node-sass -- NPM Package | Github
This is a wrapper around the C/C++ library libsass.