Spaces:
Runtime error
Runtime error
File size: 215 Bytes
0971cc4 |
1 2 3 4 5 6 7 8 9 |
/** @type {import('next').NextConfig} */
const nextConfig = {
// set basepath based on environment
basePath: process.env.NEXT_PUBLIC_BASE_PATH ?? "",
output: "standalone",
};
export default nextConfig;
|