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