Files
kotobane/next.config.mjs

16 lines
273 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'cms.achmad.dev',
pathname: '/assets/**',
},
],
},
}
export default nextConfig