12 lines
171 B
JavaScript
12 lines
171 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
reactStrictMode: true,
|
||
|
images: {
|
||
|
loader: 'imgix',
|
||
|
path: '',
|
||
|
},
|
||
|
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|