Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

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