Skip to content

Commit

Permalink
2025 Chris Catto
Browse files Browse the repository at this point in the history
  • Loading branch information
ccatto committed Jan 4, 2025
1 parent a428be7 commit 9132061
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 9132061

Please sign in to comment.