10 lines
165 B
JavaScript
Executable File
10 lines
165 B
JavaScript
Executable File
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
// images: {
|
|
// loader: "custom"
|
|
// },
|
|
}
|
|
|
|
module.exports = nextConfig
|