14 lines
201 B
JavaScript
14 lines
201 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
experimental: {
|
|
turbo: {
|
|
root: process.cwd(),
|
|
},
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|