11 lines
190 B
JavaScript
Executable File
11 lines
190 B
JavaScript
Executable File
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
poweredByHeader: false,
|
|
images: {
|
|
domains: [],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|