comicbox/next.config.js

12 lines
230 B
JavaScript
Raw Permalink 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-25 18:55:13 +00:00
output: 'standalone',
};
2022-07-19 20:32:51 +00:00
module.exports = nextConfig;