Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bmingles committed Jan 20, 2024
0 parents commit 024dae0
Show file tree
Hide file tree
Showing 21 changed files with 4,122 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Bible Plan

## Project Setup

- npx degit solidjs/templates/ts bible-plan
- update packages to latest
- package.json
- `"type": "module"` - this fixes error with importing esm in vite.config
- Add overrides to enable Vite 5 support
```json
"overrides": {
"solid-devtools": {
"vite": "^5.0.0"
},
"vite-plugin-solid": {
"vite": "^5.0.0"
}
}
```
16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.ico" />
<title>Solid App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>

<script src="/src/index.tsx" type="module"></script>
</body>
</html>
Loading

0 comments on commit 024dae0

Please sign in to comment.