11 lines
230 B
JavaScript
Executable file
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;
|