sm

Tagged "Debugging"

  1. in Articles
    Fix failed Fastify deploy on Render
    To get a boilerplate Fastify app to deploy on Render.com, you need to read to listen on PORT environment variable
  2. in Articles
    Fix SVG CSS animation issue in Safari
    Safari 16 has trouble with CSS animations on SVG child elements, but you can resolve them by using a combined transform property.
  3. in Articles
    Fix trailing whitespace in Astro components
    There is an issue with the Astro compiler that leaves unwanted whitespace in your elements, and this workaround will solve the problem until it's resolved
  4. in Articles
    Fix Astro dev server hanging with new collections API
    The issue for me was calling useCollection on an entry with a layout.
  5. in Articles
    Fix "package esbuild-linux-64 could not be found" error on Netlify
    I don't know how applicable this solution will be to your situation, but it worked for me!
  6. in Articles
    Fix Netlify Dev's 'Multiple possible start commands found' issue
    You need to include additional properties in your netlify.toml to get it working correctly.
  7. in Articles
    Use multiple Chrome Profiles when debugging
    With specialized profiles, you can help identify issues without messing with your favorite settings.
  8. in Articles
    Fix 'downloadable font: rejected by sanitizer' error in Firefox
    Make sure that the path to your font is correct before going down the debugging rabbit hole.
  9. in Articles
    Fix Netlify CMS YAML error 'Implicit map keys need to be on a single line'
    Make sure that your configuration file is being copied to the destination directory.
  10. in Articles
    Fix "Error: Could not resolve pagination key in template data" in Eleventy
    Not a true fix, but a decent workaround when paginating collections in Eleventy
  11. in Articles
    Fix 'EMFILE: too many open files' error in Jest
    When trying to run Jest in watch mode, this error may mean that you are missing a dependency.
  12. in Articles
    Before You Debug
    An organized approach to debugging your code