vaalachat/next.config.js
2023-03-17 13:50:51 +00:00

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;