8 lines
146 B
JavaScript
8 lines
146 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const nextConfig = {
|
||
|
|
images: { unoptimized: true },
|
||
|
|
distDir: "build",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|