使用nextjs

时间:2017-11-30 07:08:03

标签: reactjs webpack bulma nextjs

我正在尝试将bulmanext.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;
  }
}

0 个答案:

没有答案