Leftover Stuffing Waffles

A few years ago, my niece Lily whipped up a batch of these waffles the morning after Thanksgiving. I was delighted by the idea and had never made them before. This is a fun way to repurpose leftover stuffing by turning it into a sweet and savory breakfast. Depending on the stuffing situation in your kitchen, there could be an array of sausages, dried fruits, or chestnuts already studded into the mix. Serve the waffles with gravy, cranberry sauce, syrup, or topped off with a fried egg. Have fun with it!

Yield: Makes 2 large Belgian-style waffles
Author: The Kitchen Commune

Leftover Stuffing Waffles

gluten-free, dairy-free, vegetarian, nightshade-free, soy-free, nut-free

Ingredients

  • 4 large eggs
  • Kosher sea salt
  • 4 cups leftover stuffing
  • Chicken or vegetable broth or water, as needed
  • Avocado oil, for greasing
  • Leftover gravy, cranberry sauce, or maple syrup, for serving

Instructions

  1. Preheat a round Belgian-style waffle maker.
  2. In a large bowl, whisk the eggs with a pinch of salt and add the stuffing to them. Fold together until you have a thick batter (something looser than cookie dough but not quite pourable). If it seems too dry, add a small splash of broth.
  3. Brush the cooking surface of the waffle iron with a little avocado oil. Spoon ½ cup of the batter onto each quarter of the waffle maker, push it into a roughly even layer, and close the lid. Cook until the waffle is golden and crispy, about 3 minutes.
  4. Serve immediately with your choice of toppings.
// ==UserScript== // @name Beyondspace Ground Control // @namespace http://beyondspace.studio // @version 0.1 // @description Beyondspace tools for Squarespace // @author Beyondspace Studio // @match *://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=squarespace.com // @grant none // ==/UserScript== (function() { 'use strict'; // Check if we're in Squarespace function isSquarespace() { return window.Static && window.Static.SQUARESPACE_CONTEXT; } // Main initialization function init() { if (!isSquarespace()) { return; } console.log('Beyondspace Ground Control: Squarespace detected, injecting scripts...'); (()=>{var e="beyondspace--ground-control";if(!window.top.document.getElementById(e)){var t=window.top.document.createElement("script");t.id=e,t.src="https://cdn.jsdelivr.net/gh/BeyondspaceStudio/beyondspace-snippets@0.0.71/src/ground-control/index.min.js?packages=assets-library-enhanced",window.top.document.body.appendChild(t)}})(); console.log('Beyondspace Ground Control: Successfully injected!'); } // Start initialization after a short delay to ensure Squarespace context is loaded setTimeout(init, 1000); })();