Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

13 строки
376 B

  1. const withPlugins = require("next-compose-plugins");
  2. const withImages = require("next-images");
  3. const withSass = require("@zeit/next-sass");
  4. const webpack = require("webpack");
  5. const path = require("path");
  6. module.exports = withPlugins([[withSass], [withImages]], {
  7. webpack(config, options) {
  8. config.resolve.modules.push(path.resolve("./"));
  9. return config;
  10. }
  11. });