Skip to content

Commit 9231374

Browse files
fix: Added missing folder
1 parent c8f5a9d commit 9231374

6 files changed

Lines changed: 71 additions & 1 deletion

File tree

src/ContentProcessorWeb/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ jspm_packages/
4949

5050
# Gatsby files
5151
.cache/
52-
public/
5352

5453
# vuepress build output
5554
.vuepress/dist
555 KB
Binary file not shown.
16.8 KB
Binary file not shown.
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="icon" href="./favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1" />
7+
<meta
8+
name="theme-color"
9+
content="#fafafa"
10+
media="(prefers-color-scheme: light)"
11+
/>
12+
<meta
13+
name="theme-color"
14+
content="#1c1c1c"
15+
media="(prefers-color-scheme: dark)"
16+
/>
17+
<meta
18+
name="description"
19+
content="Web site created using create-react-app"
20+
/>
21+
22+
<link rel="apple-touch-icon" href="%PUBLIC_URL%/favicon.ico" />
23+
<!--
24+
manifest.json provides metadata used when your web app is installed on a
25+
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
26+
-->
27+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
28+
<!--
29+
Notice the use of %PUBLIC_URL% in the tags above.
30+
It will be replaced with the URL of the `public` folder during the build.
31+
Only files inside the `public` folder can be referenced from the HTML.
32+
33+
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
34+
work correctly both with client-side routing and a non-root public URL.
35+
Learn how to configure a non-root public URL by running `npm run build`.
36+
-->
37+
<title>Content Processor</title>
38+
</head>
39+
<body>
40+
<noscript>You need to enable JavaScript to run this app.</noscript>
41+
<div id="root"></div>
42+
<!--
43+
This HTML file is a template.
44+
If you open it directly in the browser, you will see an empty page.
45+
46+
You can add webfonts, meta tags, or analytics to this file.
47+
The build step will place the bundled scripts into the <body> tag.
48+
49+
To begin the development, run `npm start` or `yarn start`.
50+
To create a production bundle, use `npm run build` or `yarn build`.
51+
-->
52+
</body>
53+
</html>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"short_name": "CTO Eden",
3+
"name": "Create React App Sample",
4+
"icons": [
5+
{
6+
"src": "Microsoft_logo.ico",
7+
"type": "image/png",
8+
"sizes": "128X128"
9+
}
10+
],
11+
"start_url": ".",
12+
"display": "standalone",
13+
"theme_color": "#000000",
14+
"background_color": "#ffffff"
15+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://www.robotstxt.org/robotstxt.html
2+
User-agent: *
3+
Disallow:

0 commit comments

Comments
 (0)