- Updated to React 18
- Updated for public release - Git was reset for privacy reasons
9
public/config.js
Normal file
@@ -0,0 +1,9 @@
|
||||
const config = {
|
||||
version: "0.1.0",
|
||||
};
|
||||
|
||||
window.config = config;
|
||||
|
||||
if (module) {
|
||||
module.exports = config;
|
||||
}
|
BIN
public/icon/android-icon-144x144.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
public/icon/android-icon-192x192.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
public/icon/android-icon-36x36.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
public/icon/android-icon-48x48.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
public/icon/android-icon-72x72.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
public/icon/android-icon-96x96.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
public/icon/apple-icon-180x180.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
public/icon/favicon.ico
Normal file
After Width: | Height: | Size: 1.1 KiB |
18
public/index.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/icon/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta name="description" content="React base project" />
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/icon/apple-icon-180x180.png" />
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<title>React Base App</title>
|
||||
<script src="%PUBLIC_URL%/config.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
</body>
|
||||
</html>
|
46
public/manifest.json
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"short_name": "react-starter-kit",
|
||||
"name": "Starter kit for react",
|
||||
"icons": [
|
||||
{
|
||||
"src": "./icon/android-icon-36x36.png",
|
||||
"sizes": "36x36",
|
||||
"type": "image/png",
|
||||
"density": "0.75"
|
||||
},
|
||||
{
|
||||
"src": "./icon/android-icon-48x48.png",
|
||||
"sizes": "48x48",
|
||||
"type": "image/png",
|
||||
"density": "1.0"
|
||||
},
|
||||
{
|
||||
"src": "./icon/android-icon-72x72.png",
|
||||
"sizes": "72x72",
|
||||
"type": "image/png",
|
||||
"density": "1.5"
|
||||
},
|
||||
{
|
||||
"src": "./icon/android-icon-96x96.png",
|
||||
"sizes": "96x96",
|
||||
"type": "image/png",
|
||||
"density": "2.0"
|
||||
},
|
||||
{
|
||||
"src": "./icon/android-icon-144x144.png",
|
||||
"sizes": "144x144",
|
||||
"type": "image/png",
|
||||
"density": "3.0"
|
||||
},
|
||||
{
|
||||
"src": "./icon/android-icon-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"density": "4.0"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#000000",
|
||||
"background_color": "#ffffff"
|
||||
}
|
3
public/robots.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
# https://www.robotstxt.org/robotstxt.html
|
||||
User-agent: *
|
||||
Disallow:
|