7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
![]() |
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
output: 'export',
|
||
|
images: { unoptimized: true }
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|