diff options
author | 2022-08-12 15:50:42 +0000 | |
---|---|---|
committer | 2022-08-12 15:50:42 +0000 | |
commit | 467fabd74977911c2690b65eb44c8428d151239b (patch) | |
tree | 30f678ae0f66f0219d6ddc8d752cbdaca355b5a8 | |
parent | c0992e1fefc105577e99ac94338d349dbabf38d8 (diff) | |
download | astro-467fabd74977911c2690b65eb44c8428d151239b.tar.gz astro-467fabd74977911c2690b65eb44c8428d151239b.tar.zst astro-467fabd74977911c2690b65eb44c8428d151239b.zip |
[ci] format
-rw-r--r-- | packages/astro/src/vite-plugin-jsx/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/vite-plugin-jsx/index.ts b/packages/astro/src/vite-plugin-jsx/index.ts index f8f65743c..0a7ff4c9f 100644 --- a/packages/astro/src/vite-plugin-jsx/index.ts +++ b/packages/astro/src/vite-plugin-jsx/index.ts @@ -58,7 +58,7 @@ async function transformJSX({ const options = await jsxTransformOptions!({ mode, ssr }); const plugins = [...(options.plugins || [])]; if (ssr) { - plugins.push(tagExportsPlugin({ rendererName: renderer.name })) + plugins.push(tagExportsPlugin({ rendererName: renderer.name })); } const result = await babel.transformAsync(code, { presets: options.presets, |