index.html
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <link rel="icon" href="/favicon.ico" /> 6 <link rel="manifest" href="/manifest.json" /> 7 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 8 <meta name="theme-color" content="#000000" /> 9 <meta 10 name="description" 11 content="Evidently - ML Monitoring Demo. Hosted example to monitor the performance of a demand forecasting model on a toy dataset." 12 /> 13 <title>Evidently - ML Monitoring Demo</title> 14 </head> 15 <body> 16 <div id="root"></div> 17 <script> 18 // hack for nivo and vite 19 // https://github.com/plouc/nivo/issues/1455#issuecomment-815904731 20 var global = globalThis 21 </script> 22 <script type="module" src="/src/main.tsx"></script> 23 </body> 24 </html>