選択できるのは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);