mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-28 09:39:41 +02:00
16 lines
361 B
JavaScript
16 lines
361 B
JavaScript
|
import i18n from "@/i18n.js";
|
||
|
import SearchPage from "@/pages/SearchPage";
|
||
|
import HomePage from "@/pages/HomePage";
|
||
|
|
||
|
export const generalRoutes = [
|
||
|
{ path: "/", name: "home", component: HomePage },
|
||
|
{ path: "/mealie", component: HomePage },
|
||
|
{
|
||
|
path: "/search",
|
||
|
component: SearchPage,
|
||
|
meta: {
|
||
|
title: i18n.t("search.search"),
|
||
|
},
|
||
|
},
|
||
|
];
|