You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

9 rivejä
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);