Add dedicated local admin domain routing

This commit is contained in:
MOH
2026-03-13 17:48:45 +01:00
parent bfd7adccac
commit fef44ded80
47 changed files with 260 additions and 107 deletions
+18 -1
View File
@@ -1,2 +1,19 @@
export { metadata } from "../_admin/layout";
import type { Metadata } from "next";
export const metadata: Metadata = {
robots: {
index: false,
follow: false,
nocache: true,
googleBot: {
index: false,
follow: false,
noimageindex: true,
"max-image-preview": "none",
"max-snippet": -1,
"max-video-preview": -1,
},
},
};
export { default } from "../_admin/layout";
+1 -1
View File
@@ -1,2 +1,2 @@
export { dynamic } from "../../_admin/maintenance/page";
export const dynamic = "force-dynamic";
export { default } from "../../_admin/maintenance/page";
+1 -1
View File
@@ -1,2 +1,2 @@
export { dynamic } from "../../_admin/media/page";
export const dynamic = "force-dynamic";
export { default } from "../../_admin/media/page";
+1 -1
View File
@@ -1,2 +1,2 @@
export { dynamic } from "../_admin/page";
export const dynamic = "force-dynamic";
export { default } from "../_admin/page";