comicbox/next.config.js
2022-07-25 18:31:20 +01:00

10 lines
204 B
JavaScript
Executable file

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: ['img.comicfury.com'],
},
};
module.exports = nextConfig;