mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 18:23:18 -04: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"), | ||
|  |     }, | ||
|  |   }, | ||
|  | ]; |