comicbox/next.config.js

11 lines
204 B
JavaScript
Raw Normal View History

2022-07-19 20:32:51 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
2022-07-25 17:31:20 +00:00
domains: ['img.comicfury.com'],
},
};
2022-07-19 20:32:51 +00:00
module.exports = nextConfig;