Add contributors on home page

This commit is contained in:
Sebastien Castiel
2024-01-09 11:25:42 -05:00
parent a258e85fae
commit 5ce96aef30
2 changed files with 59 additions and 3 deletions

View File

@@ -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)