Files
mealie/frontend/src/routes/general.js

17 lines
447 B
JavaScript
Raw Normal View History

const SearchPage = () => import("@/pages/SearchPage");
const ShoppingList = () => import("@/pages/ShoppingList");
import HomePage from "@/pages/HomePage";
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",
},
},
];