mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-25 08:09:41 +02:00
* multiple recipes per day * fix update * meal-planner rewrite * disable meal-tests * spacing Co-authored-by: hay-kot <hay-kot@pm.me>
16 lines
427 B
JavaScript
16 lines
427 B
JavaScript
import SearchPage from "@/pages/SearchPage";
|
|
import HomePage from "@/pages/HomePage";
|
|
import ShoppingList from "@/pages/ShoppingList";
|
|
|
|
export const generalRoutes = [
|
|
{ path: "/", name: "home", component: HomePage },
|
|
{ path: "/mealie", component: HomePage },
|
|
{ path: "/shopping-list", component: ShoppingList },
|
|
{
|
|
path: "/search",
|
|
component: SearchPage,
|
|
meta: {
|
|
title: "search.search",
|
|
},
|
|
},
|
|
];
|