-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathindex.ts
63 lines (61 loc) · 1.72 KB
/
index.ts
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import { readFileSync } from 'node:fs';
import type { AstroConfig, AstroIntegration } from 'astro';
function getViteConfiguration() {
return {
optimizeDeps: {
include: [
'@astrojs/lit/client-shim.js',
'@astrojs/lit/hydration-support.js',
'@webcomponents/template-shadowroot/template-shadowroot.js',
'lit/experimental-hydrate-support.js',
],
exclude: ['@astrojs/lit/server.js'],
},
ssr: {
external: [
'lit-element/lit-element.js',
'@lit-labs/ssr/lib/install-global-dom-shim.js',
'@lit-labs/ssr/lib/render-lit-html.js',
'@lit-labs/ssr/lib/lit-element-renderer.js',
],
},
};
}
export default function (): AstroIntegration {
return {
name: '@astrojs/lit',
hooks: {
'astro:config:setup': ({ updateConfig, addRenderer, injectScript }) => {
// Inject the necessary polyfills on every page (inlined for speed).
injectScript(
'head-inline',
readFileSync(new URL('../client-shim.min.js', import.meta.url), { encoding: 'utf-8' })
);
// Inject the hydration code, before a component is hydrated.
injectScript('before-hydration', `import '@astrojs/lit/hydration-support.js';`);
// Add the lit renderer so that Astro can understand lit components.
addRenderer({
name: '@astrojs/lit',
serverEntrypoint: '@astrojs/lit/server.js',
});
// Update the vite configuration.
updateConfig({
vite: getViteConfiguration(),
});
},
'astro:build:setup': ({ vite, target }) => {
if (target === 'server') {
if (!vite.ssr) {
vite.ssr = {};
}
if (!vite.ssr.noExternal) {
vite.ssr.noExternal = [];
}
if (Array.isArray(vite.ssr.noExternal)) {
vite.ssr.noExternal.push('lit');
}
}
},
},
};
}