mirror of
https://github.com/skidoodle/albert.lol.git
synced 2026-04-28 03:07:40 +02:00
11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
images: {
|
|
domains: ['i.arch.gay', 'cdn.discordapp.com']
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|