From 52b079515d32b7c881b00d2cd7eac9eeb0ebda9b Mon Sep 17 00:00:00 2001
From: Cory Dransfeldt <hi@coryd.dev>
Date: Fri, 26 May 2023 17:22:55 -0700
Subject: [PATCH] chore: drop filter

---
 config/filters.js | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/config/filters.js b/config/filters.js
index 62bd5989..ab533394 100644
--- a/config/filters.js
+++ b/config/filters.js
@@ -5,10 +5,6 @@ module.exports = {
   trim: (string, limit) => {
     return string.length <= limit ? string : `${string.slice(0, limit)}...`
   },
-  postPath: (path) => {
-    if (path.includes('micro/')) return path
-    return `/micro/${path}`
-  },
   stripIndex: (path) => {
     return path.replace('/index.html', '/')
   },