This commit is contained in:
Zoe
2022-10-05 19:15:55 -05:00
parent cf198b63a5
commit 8ceabc3a2f
26 changed files with 5426 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
let SSR = false;
export function isSSR() {
return SSR;
}
export function setSSR() {
SSR = true;
}