Files
SweetHome/next.config.mjs
mouazkh 73163be0c3
All checks were successful
Build frontend / build (push) Successful in 34s
added base path
2026-03-19 21:41:02 +03:00

10 lines
200 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
reactCompiler: true,
basePath: "/sweetHome",
assetPrefix: "/sweetHome/",
};
export default nextConfig;