我正在尝试将bulma
与next.js
一起使用,但我一直收到以下错误Invalid token or unexpected token
"../node_modules/bulma/css/bulma.css:2" @-webkit-keyframes spinAround {
,这是bulma.css
中的第一行。
这是我的next.config.js
文件,其webpack
配置。我错过了什么吗?感谢。
const path = require("path");
const glob = require("glob");
module.exports = {
webpack: (config, { dev }) => {
config.module.rules.push(
{
test: /\.css$/,
use: [
'style-loader',
{ loader: 'css-loader', options: { importLoaders: 1 } }
]
}
)
return config;
}
}