comicbox/next.config.js

11 lines
230 B
JavaScript
Executable file

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