diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 0000000..27a9989 --- /dev/null +++ b/next.config.ts @@ -0,0 +1,38 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: 'lh3.googleusercontent.com', + port: '', + pathname: '/a/**', + }, + { + protocol: 'https', + hostname: 'avatars.githubusercontent.com', + }, + ], + }, + output: 'standalone', + // env: { + // BASE_URL: process.env.BASE_URL, + // } + + // experimental: { + // serverActions: true, + // }, + // images: { + // domains: ['images.somedomain.com'], + // remotePatters: [ + // { + // protocol: 'https', + // hostname: 'images.pexels.com', + // port: '', + // pathname: '/photos/**' + // } + // ] + // } +}; + +module.exports = nextConfig;