8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const nextConfig = {
|
||
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH || "",
|
||
|
|
reactStrictMode: true,
|
||
|
|
};
|
||
|
|
|
||
|
|
export default nextConfig;
|