aboutsummaryrefslogtreecommitdiffstats
path: root/next.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'next.config.js')
-rw-r--r--next.config.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/next.config.js b/next.config.js
index 7503bbe..5030b59 100644
--- a/next.config.js
+++ b/next.config.js
@@ -1,5 +1,9 @@
/** @type {import('next').NextConfig} */
-const nextConfig = {}
+const nextConfig = {
+ images: {
+ remotePatterns: [{ hostname: 'avatars.githubusercontent.com' }],
+ },
+}
const { withPlausibleProxy } = require('next-plausible')
module.exports = withPlausibleProxy()(nextConfig)