9 lines
156 B
TypeScript
9 lines
156 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
basePath: '/leopost',
|
|
assetPrefix: '/leopost',
|
|
};
|
|
|
|
export default nextConfig;
|