mirror of
https://github.com/tiennm99/loldle.git
synced 2026-05-23 12:25:23 +00:00
52d6b03c23
Enables platform-agnostic deployment — GitHub Pages sets the env var in CI, while Vercel/Netlify/local dev default to root path.
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH || "",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|