maps-service/web/next.config.ts

8 lines
126 B
TypeScript
Raw Permalink Normal View History

2024-12-10 02:14:54 +00:00
import type { NextConfig } from "next";
2024-12-11 04:01:22 +00:00
const nextConfig: NextConfig = {
distDir: "build"
};
2024-12-10 02:14:54 +00:00
export default nextConfig;