Files

11 lines
197 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
images: {
loader: 'custom',
loaderFile: './loader.js',
},
};
export default nextConfig;