aboutsummaryrefslogtreecommitdiffstats
path: root/next.config.js
blob: 5030b592c15d838e3900fbab3f5ccfc6869b734f (plain)
1
2
3
4
5
6
7
8
9
/** @type {import('next').NextConfig} */
const nextConfig = {
  images: {
    remotePatterns: [{ hostname: 'avatars.githubusercontent.com' }],
  },
}

const { withPlausibleProxy } = require('next-plausible')
module.exports = withPlausibleProxy()(nextConfig)