Skip to content

Commit

Permalink
Fix npm run build, and fix the unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
darkokeitaro committed Dec 19, 2024
1 parent 77cdd93 commit 2e1812d
Show file tree
Hide file tree
Showing 12 changed files with 7,984 additions and 2,919 deletions.
7 changes: 7 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
]
}
61 changes: 26 additions & 35 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,37 +1,28 @@
<!doctype html>

Check failure on line 1 in index.html

View workflow job for this annotation

GitHub Actions / Prettier

index.html#L1

There are issues with this file's formatting, please run Prettier to fix the errors
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Create image assets quickly with the Blog Image Generator by Keitaro"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@KeitaroInc" />
<meta name="og:title" content="Blog Image Generator by Keitaro" />
<meta
name="og:description"
content="Create image assets quickly with the Blog Image Generator by Keitaro"
/>
<meta
property="og:image"
content="%PUBLIC_URL%/keitaro-blog-image-generator-post-cover.png"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
crossorigin="anonymous"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<title>Blog Image Generator by Keitaro</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="Create image assets quickly with the Blog Image Generator by Keitaro" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@KeitaroInc" />
<meta name="og:title" content="Blog Image Generator by Keitaro" />
<meta name="og:description" content="Create image assets quickly with the Blog Image Generator by Keitaro" />
<meta property="og:image" content="/keitaro-blog-image-generator-post-cover.png" />
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link crossorigin="anonymous"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<title>Blog Image Generator by Keitaro</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>

</html>
Loading

0 comments on commit 2e1812d

Please sign in to comment.