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