blog.minch.devHow to Bypass Ad Blockers for Vercel Analytics in NuxtThe Problem: Analytics Blocked by Ad Blockers Vercel Analytics offers a seamless & privacy-friendly way to track page views and performance for apps hosted on the platform. However, many ad blockers and VPN providers recognize and block requests to k...Jun 24, 2025·2 min read
blog.minch.devHow to Register Custom Vue Directives in Nuxt 3TL;DR Create a plugin file in your plugins/ directory, which is where we'll have access to our Vue app instance. We can define and register our custom directive there: // ~/plugins/my-directives.ts export default defineNuxtPlugin((nuxtApp) => { n...Nov 11, 2024·2 min read
blog.minch.devUsing Nuxt Content: Working with Remote Markdown FilesThis article discusses how to get started with Nuxt Content to create a minimal blog, and how to work with remote Markdown files. The first section goes over how to set up a project with Nuxt Content, and the second cover working with Markdown files....Apr 15, 2024·6 min read
blog.minch.devThe JavaScript Fetch APIOne of the ways of making HTTP requests in JavaScript is the fetch() API. The fetch() API is a modern JavaScript API that allows web developers to send/retrieve data across the web. Imagine a scenario where you enter a coffee shop. You go to your bar...Oct 25, 2023·5 min read
blog.minch.devHTTP Requests in JavaScriptMaking requests is the heart of the Internet. Whenever you are browsing the internet, all what you are doing is requesting information from servers, which are basically interconnected computers. It's the foundation of how websites work. A simple case...Oct 24, 2023·9 min read