12 lines
217 B
JavaScript
12 lines
217 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
externalDir: true,
|
|
optimizeCss: true,
|
|
},
|
|
images: {
|
|
domains: ['lh3.googleusercontent.com'],
|
|
},
|
|
}
|