2025-05-15 20:13:24 -03:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
|
|
|
/* config options here */
|
2025-05-16 14:40:47 -03:00
|
|
|
output: 'export',
|
2026-06-17 18:13:51 -03:00
|
|
|
basePath: '',
|
|
|
|
|
assetPrefix: '',
|
2025-05-16 14:40:47 -03:00
|
|
|
images: { unoptimized: true },
|
2025-05-15 20:13:24 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|