9 lines
197 B
TypeScript
9 lines
197 B
TypeScript
import mintelNextConfig from "@mintel/next-config";
|
|
import { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
basePath: "/gatekeeper",
|
|
};
|
|
|
|
export default mintelNextConfig(nextConfig);
|