Skip to content

Commit

Permalink
Merge pull request #31 from evan-buss/feature/switch-to-vite
Browse files Browse the repository at this point in the history
Switch from Create React App to Vite
  • Loading branch information
evan-buss authored Aug 19, 2021
2 parents e2fd92d + 1d7aaf6 commit a066e93
Show file tree
Hide file tree
Showing 18 changed files with 2,111 additions and 38,384 deletions.
26 changes: 4 additions & 22 deletions server/app/.gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,5 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
node_modules
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
dist
dist-ssr
*.local
46 changes: 0 additions & 46 deletions server/app/README.md

This file was deleted.

17 changes: 17 additions & 0 deletions server/app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="manifest" href="/manifest.json" />
<title>OpenBooks</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit a066e93

Please sign in to comment.