kakawa/next.config.mjs
Amritanshu 00fd57f256 Trying the docker buildx using git repository.
Static mostly done.
good progress on store
2024-10-12 23:50:38 +05:30

20 lines
392 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**.amazonaws.com',
},
{
protocol: 'http',
hostname: 'localhost',
},
],
unoptimized: true,
},
};
export default nextConfig;