将 bulma 与 webpack 一起使用

Using bulma together with webpack

我有this really simple webpack projects in with I now want to also use bulma一个css框架。

我通过 npm i bulma 安装了这个包,并尝试使用以下未成功的片段将其包含在我的 app.js 文件中:

import bulma from '~bulma/bulma.sass';

我也试过使用特定的 sass 部分,但也没有用:

import bulma from '~bulma/sass/base/_all';

你能帮助我完成这项工作,或者为我指明正确的方向吗?

您需要更新您的 webpack 配置文件,以便 sass 加载器还处理 sass 个文件,而不仅仅是 scss 个文件。
更改此行: test: /\.scss$/,test: /\.(sass|scss)$/