12 lines
226 B
JavaScript
Executable file
12 lines
226 B
JavaScript
Executable file
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
images: {
|
|
domains: [
|
|
'img.comicfury.com'
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|