summaryrefslogtreecommitdiff
path: root/packages/integrations/react/src
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2023-08-24 14:40:44 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-08-24 14:40:44 +0000
commit4bbcbac0b73c7e34b81ba2e4eeee08481fde1eaa (patch)
tree0777c6a83eb9c8c0712b5cc79a74b03d2c379498 /packages/integrations/react/src
parentf1c610636a7aeed0a272ab2669815135699b413c (diff)
downloadastro-4bbcbac0b73c7e34b81ba2e4eeee08481fde1eaa.tar.gz
astro-4bbcbac0b73c7e34b81ba2e4eeee08481fde1eaa.tar.zst
astro-4bbcbac0b73c7e34b81ba2e4eeee08481fde1eaa.zip
[ci] format
Diffstat (limited to 'packages/integrations/react/src')
-rw-r--r--packages/integrations/react/src/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/react/src/index.ts b/packages/integrations/react/src/index.ts
index 1cc200bc3..a09544baf 100644
--- a/packages/integrations/react/src/index.ts
+++ b/packages/integrations/react/src/index.ts
@@ -1,7 +1,7 @@
+import { appendForwardSlash } from '@astrojs/internal-helpers/path';
+import react, { type Options as ViteReactPluginOptions } from '@vitejs/plugin-react';
import type { AstroIntegration } from 'astro';
import { version as ReactVersion } from 'react-dom';
-import react, { type Options as ViteReactPluginOptions } from '@vitejs/plugin-react';
-import { appendForwardSlash } from '@astrojs/internal-helpers/path';
import type * as vite from 'vite';
export type ReactIntegrationOptions = Pick<ViteReactPluginOptions, 'include' | 'exclude'> & {