mirror of
https://github.com/penxio/penx.git
synced 2026-01-17 01:17:58 -05:00
25 lines
689 B
HTML
25 lines
689 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Default Popup Title</title>
|
|
<meta name="manifest.type" content="browser_action" />
|
|
<link rel="stylesheet" href="./style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module">
|
|
import RefreshRuntime from 'http://localhost:3000/@react-refresh'
|
|
RefreshRuntime.injectIntoGlobalHook(window)
|
|
window.$RefreshReg$ = () => { }
|
|
window.$RefreshSig$ = () => (type) => type
|
|
window.__vite_plugin_react_preamble_installed__ = true
|
|
</script>
|
|
|
|
<script type="module" src="./main.tsx"></script>
|
|
</body>
|
|
|
|
</html> |