Initial commit
Dieser Commit ist enthalten in:
30
frontend/public/debug.html
Normale Datei
30
frontend/public/debug.html
Normale Datei
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Debug Test</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Debug Test</h1>
|
||||
<div id="root">
|
||||
<p>Wenn Sie diesen Text sehen, funktioniert HTML.</p>
|
||||
</div>
|
||||
<script>
|
||||
console.log('HTML geladen');
|
||||
|
||||
// Test ob process definiert ist
|
||||
try {
|
||||
console.log('process:', typeof process);
|
||||
} catch (e) {
|
||||
console.log('process ist nicht definiert - das ist normal in Electron Renderer');
|
||||
}
|
||||
|
||||
// Test React mount point
|
||||
const root = document.getElementById('root');
|
||||
if (root) {
|
||||
console.log('Root element gefunden');
|
||||
root.innerHTML += '<p>JavaScript funktioniert!</p>';
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren