Skip to content

Commit

Permalink
chore: migrate client to Vite (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
henb13 authored Oct 29, 2023
1 parent d640efe commit afdde20
Show file tree
Hide file tree
Showing 32 changed files with 3,336 additions and 28,292 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.vscode
.DS_Store
**/.DS_Store

# client

Expand All @@ -13,9 +15,11 @@ client/coverage

## production
client/build
client/dist

## misc
client/.DS_Store
client/.env
client/.env.local
client/.env.development.local
client/.env.test.local
Expand Down
1 change: 1 addition & 0 deletions client/.env.development.local.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_API_BASE_URL=EPISODE_API_BASE_URL
1 change: 1 addition & 0 deletions client/.env.production.local.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VITE_API_BASE_URL=EPISODE_API_BASE_URL
6 changes: 4 additions & 2 deletions client/public/index.html → client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
<link rel="icon" href="favicon.png" />
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2393608933506016"
Expand All @@ -11,11 +11,13 @@
<meta
name="description"
content="Detects missing Spotify episodes of The Joe Rogan Experience podcast" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="apple-touch-icon" href="logo192.png" />
<title>JRE Missing</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>

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

0 comments on commit afdde20

Please sign in to comment.