3077ae2ac0
Follow-up to the 127.0.0.1 bind: connect-src only whitelisted the localhost variants, silently blocking Vite's HMR socket on the new origin. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
14 lines
585 B
HTML
14 lines
585 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-eval'; connect-src 'self' http://localhost:5173 ws://localhost:5173 http://127.0.0.1:5173 ws://127.0.0.1:5173; style-src 'self' 'unsafe-inline'; img-src 'self' data:;">
|
|
<title>WhatTheFlat ♭? - JamBuddy</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|