labyrinth-frontend/next.config.ts

10 lines
177 B
TypeScript
Raw Normal View History

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