-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.js
42 lines (41 loc) · 946 Bytes
/
setup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
*
* @returns {import("astro").AstroRenderer}
*/
function getRenderer() {
return {
name: "@atomico/astro",
serverEntrypoint: "@atomico/astro/server",
jsxImportSource: "atomico",
jsxTransformOptions: async () => {
const {
default: { default: jsx },
} = await import("@babel/plugin-transform-react-jsx");
return {
plugins: [jsx({}, { runtime: "automatic", importSource: "atomico" })],
};
},
};
}
/**
*
* @returns {import("astro").AstroIntegration}
*/
export default function () {
return {
name: "@atomico/astro",
hooks: {
"astro:config:setup": ({ addRenderer, updateConfig }) => {
addRenderer(getRenderer());
updateConfig({
vite: {
optimizeDeps: {
include: ["atomico", "atomico/jsx-runtime"],
exclude: ["@atomico/astro/server"],
},
},
});
},
},
};
}