2025-01-08 21:47:25 +01:00
|
|
|
import type {NextConfig} from "next";
|
2024-12-26 17:38:31 +01:00
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2025-01-08 21:47:25 +01:00
|
|
|
/* config options here */
|
|
|
|
output: "export",
|
|
|
|
assetPrefix: "./"
|
2024-12-26 17:38:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default nextConfig;
|