From 4245f00c2522341e42d10a0c605e20dc99737e54 Mon Sep 17 00:00:00 2001 From: Alexander Lichter Date: Thu, 7 Mar 2024 21:47:12 +0100 Subject: [PATCH] chore: add more raw helper extensions --- src/rollup/plugins/raw.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/rollup/plugins/raw.ts b/src/rollup/plugins/raw.ts index 243866a7d8..e32c90ef01 100644 --- a/src/rollup/plugins/raw.ts +++ b/src/rollup/plugins/raw.ts @@ -13,10 +13,14 @@ export function raw(opts: RawOptions = {}): Plugin { ".md", ".mdx", ".yml", + ".yaml", ".txt", ".css", ".htm", ".html", + ".json", + ".json5", + ".csv", ...(opts.extensions || []), ]);