25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

16 satır
435 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, { dev }) {
  8. if (dev) {
  9. config.devtool = "cheap-module-source-map";
  10. }
  11. config.resolve.modules.push(path.resolve("./"));
  12. return config;
  13. },
  14. });