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