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', '/') },