aboutsummaryrefslogtreecommitdiffstats
path: root/next.config.js
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2024-01-09 11:25:42 -0500
committerSebastien Castiel <sebastien@castiel.me>2024-01-09 11:25:42 -0500
commit5ce96aef30b87a1aeecfac67e99621b06ab64b93 (patch)
tree7470c966a6a6c3b6249911aca4dfc9a25d98aca8 /next.config.js
parenta258e85fae95dfaeff12bc5e0ec2c9c49e67deae (diff)
Add contributors on home page
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)