plugins: scaffold bui-themer plugin

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2025-09-12 18:53:05 +02:00
parent 8bfe82fbc6
commit 077dee1902
19 changed files with 805 additions and 20 deletions
+2
View File
@@ -73,6 +73,7 @@ import {
} from '@backstage/plugin-notifications';
import { CustomizableHomePage } from './components/home/CustomizableHomePage';
import { HomePage } from './components/home/HomePage';
import { BuiThemerPage } from '@backstage/plugin-bui-themer';
const app = createApp({
apis,
@@ -208,6 +209,7 @@ const routes = (
{customDevToolsPage}
</Route>
<Route path="/notifications" element={<NotificationsPage />} />
<Route path="/bui-themer" element={<BuiThemerPage />} />
</FlatRoutes>
);