mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-04 13:05:21 +02:00
* Localize more dates and texts * Adapt source language to 4-letter code for VS code * Make page titles more reactive to language change * Translate missing text + fix missed refactoring * Fix missed page titles refactoring * Translate nutrition view * Translate Image upload vue * Fix default text being defined twice in upload btn
14 lines
323 B
JavaScript
14 lines
323 B
JavaScript
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: "search.search",
|
|
},
|
|
},
|
|
];
|