9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// basePath: process.env.NODE_ENV === "production" ? "/web" : "/debug",
|
|
basePath: "/web",
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|