the statusphere demo reworked into a vite/react app in a monorepo

add plausible

Changed files
+7 -2
packages
client
+7 -2
packages/client/index.html
··· 1 - <!DOCTYPE html> 1 + <!doctype html> 2 2 <html lang="en"> 3 3 <head> 4 4 <meta charset="UTF-8" /> 5 5 <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> 6 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 7 <title>Statusphere React</title> 8 + <script 9 + defer 10 + data-domain="statusphere.mozzius.dev" 11 + src="https://plausible.mozzius.dev/js/script.js" 12 + ></script> 8 13 </head> 9 14 <body> 10 15 <div id="root"></div> 11 16 <script type="module" src="/src/main.tsx"></script> 12 17 </body> 13 - </html> 18 + </html>