mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-07 16:16:12 +01:00
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [{ hostname: 'avatars.githubusercontent.com' }],
|
|
},
|
|
}
|
|
|
|
const { withPlausibleProxy } = require('next-plausible')
|
|
module.exports = withPlausibleProxy()(nextConfig)
|