diff options
| author | Sebastien Castiel <sebastien@castiel.me> | 2024-01-09 11:25:42 -0500 |
|---|---|---|
| committer | Sebastien Castiel <sebastien@castiel.me> | 2024-01-09 11:25:42 -0500 |
| commit | 5ce96aef30b87a1aeecfac67e99621b06ab64b93 (patch) | |
| tree | 7470c966a6a6c3b6249911aca4dfc9a25d98aca8 /next.config.js | |
| parent | a258e85fae95dfaeff12bc5e0ec2c9c49e67deae (diff) | |
Add contributors on home page
Diffstat (limited to 'next.config.js')
| -rw-r--r-- | next.config.js | 6 |
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) |
