UNPKG

@fe-fast/code-sweeper

Version:

A lightweight JavaScript/TypeScript code cleaning tool

23 lines (22 loc) 643 B
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>My React App</title> <script type="module"> if (import.meta.hot?.on) { import.meta.hot.on('vite:error', (error) => { if (error.err) { console.error([error.err.message, error.err.frame].filter(Boolean).join('\n')); } }); } </script> </head> <body> <div id="root"></div> <script type="module" src="/src/main.tsx"></script> </body> </html>