Archived
19 lines
376 B
JavaScript
19 lines
376 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: 'export',
|
|
trailingSlash: true,
|
|
images: {
|
|
unoptimized: true,
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**',
|
|
port: '',
|
|
pathname: '/images/**',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig |