Clean up unused code and untrack build artifacts

- Remove dist/ from git (build output, already in .gitignore)
- Replace default React import with named StrictMode in main.jsx

https://claude.ai/code/session_01C4T3bYHR2svLq7JVcxKJ6Y
This commit is contained in:
Claude
2026-05-27 11:44:16 +00:00
parent 6759129a9e
commit 00d9dbd7c8
4 changed files with 3 additions and 174 deletions
File diff suppressed because one or more lines are too long
-157
View File
File diff suppressed because one or more lines are too long
-13
View File
@@ -1,13 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bible Study Project</title>
<script type="module" crossorigin src="/assets/index-Bou6tA49.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-0aZ8QMJ1.css">
</head>
<body class="bg-slate-50 text-slate-900">
<div id="root"></div>
</body>
</html>
+3 -3
View File
@@ -1,10 +1,10 @@
import React from 'react'; import { StrictMode } from 'react';
import ReactDOM from 'react-dom/client'; import ReactDOM from 'react-dom/client';
import App from './App.jsx'; import App from './App.jsx';
import './index.css'; import './index.css';
ReactDOM.createRoot(document.getElementById('root')).render( ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode> <StrictMode>
<App /> <App />
</React.StrictMode> </StrictMode>
); );