mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 17:53:31 -04:00 
			
		
		
		
	* set global icons * fixes #419 * button style docs * category/tag page updates * dynamic router imports Co-authored-by: hay-kot <hay-kot@pm.me>
		
			
				
	
	
		
			17 lines
		
	
	
		
			447 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			447 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 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",
 | |
|     },
 | |
|   },
 | |
| ];
 |