diff options
author | 2022-07-20 14:58:33 +0000 | |
---|---|---|
committer | 2022-07-20 14:58:33 +0000 | |
commit | 66012e334aff6a7f9a5116d9cd3dc505711eb95b (patch) | |
tree | 960fb7c415c5251cfb6837f8703bd4aea94f0428 /packages/integrations/mdx/src | |
parent | 61fec63044e1585348e8405bee6fdf4dec635efa (diff) | |
download | astro-66012e334aff6a7f9a5116d9cd3dc505711eb95b.tar.gz astro-66012e334aff6a7f9a5116d9cd3dc505711eb95b.tar.zst astro-66012e334aff6a7f9a5116d9cd3dc505711eb95b.zip |
[ci] format
Diffstat (limited to 'packages/integrations/mdx/src')
-rw-r--r-- | packages/integrations/mdx/src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/mdx/src/index.ts b/packages/integrations/mdx/src/index.ts index 7b4a24ff5..140e86632 100644 --- a/packages/integrations/mdx/src/index.ts +++ b/packages/integrations/mdx/src/index.ts @@ -1,5 +1,5 @@ -import type { AstroIntegration } from 'astro'; import mdxPlugin from '@mdx-js/rollup'; +import type { AstroIntegration } from 'astro'; import { parse as parseESM } from 'es-module-lexer'; import { getFileInfo } from './utils.js'; @@ -36,7 +36,7 @@ export default function mdx(): AstroIntegration { // TODO: decline HMR updates until we have a stable approach code += `\nif (import.meta.hot) { import.meta.hot.decline(); - }` + }`; } return code; }, |