19 lines
362 B
JavaScript
19 lines
362 B
JavaScript
|
const withPlugins = require('next-compose-plugins');
|
||
|
const optimizedImages = require('next-optimized-images');
|
||
|
|
||
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
reactStrictMode: true,
|
||
|
|
||
|
images: {
|
||
|
loader: 'custom',
|
||
|
disableStaticImages: true,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
module.exports = withPlugins([
|
||
|
[optimizedImages, {
|
||
|
// config
|
||
|
}],
|
||
|
], nextConfig);
|