mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	Feature/recipe viewer (#244)
* fix dialog placement * markdown support in ingredients * fix line render issue * fix tag rendering bug * change ingredients to text area * no slug error * add tag pages * remove console.logs Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
		@@ -6,6 +6,7 @@ import NewRecipe from "@/pages/Recipe/NewRecipe";
 | 
			
		||||
import CustomPage from "@/pages/Recipes/CustomPage";
 | 
			
		||||
import AllRecipes from "@/pages/Recipes/AllRecipes";
 | 
			
		||||
import CategoryPage from "@/pages/Recipes/CategoryPage";
 | 
			
		||||
import TagPage from "@/pages/Recipes/TagPage";
 | 
			
		||||
import Planner from "@/pages/MealPlan/Planner";
 | 
			
		||||
import Debug from "@/pages/Debug";
 | 
			
		||||
import LoginPage from "@/pages/LoginPage";
 | 
			
		||||
@@ -33,7 +34,8 @@ export const routes = [
 | 
			
		||||
  { path: "/search", component: SearchPage },
 | 
			
		||||
  { path: "/recipes/all", component: AllRecipes },
 | 
			
		||||
  { path: "/pages/:customPage", component: CustomPage },
 | 
			
		||||
  { path: "/recipes/:category", component: CategoryPage },
 | 
			
		||||
  { path: "/recipes/tag/:tag", component: TagPage },
 | 
			
		||||
  { path: "/recipes/category/:category", component: CategoryPage },
 | 
			
		||||
  { path: "/recipe/:recipe", component: ViewRecipe },
 | 
			
		||||
  { path: "/new/", component: NewRecipe },
 | 
			
		||||
  { path: "/meal-plan/planner", component: Planner },
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user