2026-01-28 17:32:36 +03:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
|
|
|
|
/* config options here */
|
|
|
|
|
reactCompiler: true,
|
2026-03-19 21:41:02 +03:00
|
|
|
basePath: "/sweetHome",
|
|
|
|
|
assetPrefix: "/sweetHome/",
|
2026-01-28 17:32:36 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|