Как включить несколько плагинов с next-css в файл next.config.js - PullRequest
0 голосов
/ 18 мая 2019

Я импортирую css-файлы active-slick.Когда я удаляю cssModules:true из файла next.config.js, все работает нормально.Любая идея, почему добавление cssModules:true создает проблему?

const withCSS = require("@zeit/next-css");
module.exports = withCSS({
  cssModules: true,
  webpack: config => {
    config.module.rules.push({
      test: /\.(eot|woff|woff2|ttf|svg|png|jpg|gif)$/,
      use: {
        loader: "url-loader",
        options: {
          limit: 100000,
          name: "[name].[ext]"
        }
      }
    });
    return config;
  }
});
...