From 60a7fdbecae2cb2afc7aae7b3df327921c6e3334 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Tue, 2 May 2023 13:43:07 -0400 Subject: [PATCH] feat(overrides): add mdx parser for md files --- index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.js b/index.js index f3fd284..7478a94 100644 --- a/index.js +++ b/index.js @@ -20,5 +20,11 @@ module.exports = { trailingComma: 'none', }, }, + { + files: '*.md', + options: { + parser: 'mdx', + }, + }, ], };