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

9 строки
438 B

  1. const withPlugins = require('next-compose-plugins');
  2. const optimizedImages = require('next-optimized-images');
  3. const nextConfiguration = {
  4. target: 'serverless', //will output independent pages that don't require a monolithic server. It's only compatible with next start or Serverless deployment platforms (like ZEIT Now) — you cannot use the custom server API.
  5. };
  6. module.exports = withPlugins([optimizedImages], nextConfiguration);