Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

9 Zeilen
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);