Skip to content

Commit 286298d

Browse files
feat(astro): add initial scaffolding and PF support
1 parent 2854da0 commit 286298d

File tree

7 files changed

+704
-22
lines changed

7 files changed

+704
-22
lines changed

astro.config.mjs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
// @ts-check
22
import { defineConfig } from 'astro/config';
3+
import react from '@astrojs/react';
34

45
// https://astro.build/config
5-
export default defineConfig({});
6+
export default defineConfig({
7+
integrations: [react()],
8+
vite: {
9+
ssr: {
10+
noExternal: ["@patternfly/*", "react-dropzone"],
11+
}
12+
}
13+
});

0 commit comments

Comments
 (0)