File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,17 @@ export default function Head() {
7
7
< meta charSet = "UTF-8" />
8
8
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" />
9
9
< link rel = "icon" type = "image/x-icon" href = { faviconPath } />
10
+ < script
11
+ // biome-ignore lint/security/noDangerouslySetInnerHtml: Theme script requires dynamic content
12
+ dangerouslySetInnerHTML = { {
13
+ __html : `(() => {
14
+ window.semaphore = window.semaphore || [];
15
+ window.ketch = (...args) => {
16
+ window.semaphore.push(args);
17
+ };
18
+ })();` ,
19
+ } }
20
+ />
10
21
< script
11
22
// biome-ignore lint/security/noDangerouslySetInnerHtml: Theme script requires dynamic content
12
23
dangerouslySetInnerHTML = { {
Original file line number Diff line number Diff line change 1
1
{
2
+ "build" : {
3
+ "outputDirectory" : " dist/client"
4
+ },
2
5
"rewrites" : [
3
6
{
4
7
"source" : " /(.*)" ,
You can’t perform that action at this time.
0 commit comments