質問編集履歴

1

add

2023/02/05 18:02

投稿

banana3232
banana3232

スコア2

test CHANGED
File without changes
test CHANGED
@@ -54,6 +54,56 @@
54
54
  }
55
55
  ```
56
56
 
57
+ index.html
58
+ ```html
59
+ <!DOCTYPE html>
60
+ <html lang="ja">
61
+ <head>
62
+ <meta charset="UTF-8" />
63
+ <link rel="icon" href="%PUBLIC_URL%/favicon.png" />
64
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
65
+ <meta name="theme-color" content="#000000" />
66
+ <meta
67
+ name="description"
68
+ content="Web site created using create-react-app"
69
+ />
70
+ <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo.png" />
71
+ <!--
72
+ manifest.json provides metadata used when your web app is installed on a
73
+ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
74
+ -->
75
+ <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
76
+ <!--
77
+ Notice the use of %PUBLIC_URL% in the tags above.
78
+ It will be replaced with the URL of the `public` folder during the build.
79
+ Only files inside the `public` folder can be referenced from the HTML.
80
+
81
+ Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
82
+ work correctly both with client-side routing and a non-root public URL.
83
+ Learn how to configure a non-root public URL by running `npm run build`.
84
+ -->
85
+ <title>Devconsultation</title>
86
+ </head>
87
+ <body>
88
+ <div>文字化テスト</div>
89
+ <noscript>You need to enable JavaScript to run this app.</noscript>
90
+ <div id="root"></div>
91
+ <!--
92
+ This HTML file is a template.
93
+ If you open it directly in the browser, you will see an empty page.
94
+
95
+ You can add webfonts, meta tags, or analytics to this file.
96
+ The build step will place the bundled scripts into the <body> tag.
97
+
98
+ To begin the development, run `npm start` or `yarn start`.
99
+ To create a production bundle, use `npm run build` or `yarn build`.
100
+ -->
101
+ </body>
102
+ </html>
103
+
104
+ ```
105
+
106
+
57
107
  ### 試したこと
58
108
  projects\app\public\index.html に下記を追加しましたが変わりませんでした。。
59
109
  ```