diff --git a/.gitignore b/.gitignore index c2065bc..46f305c 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,11 @@ out/ ### VS Code ### .vscode/ + +### React (prod build) static files ### +backend/src/main/resources/static/asset-manifest.json +backend/src/main/resources/static/favicon.ico +backend/src/main/resources/static/index.html +backend/src/main/resources/static/manifest.json +backend/src/main/resources/static/robots.txt +backend/src/main/resources/static/static/* \ No newline at end of file diff --git a/webapp/package.json b/webapp/package.json index 2cb2646..547219c 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -13,6 +13,9 @@ "react-scripts": "^5.0.1", "web-vitals": "^3.5.0" }, + "optionalDependencies": { + "fsevents": "^2.x.x" + }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", @@ -22,8 +25,7 @@ "proxy": "http://localhost:8081", "eslintConfig": { "extends": [ - "react-app", - "react-app/jest" + "react-app" ] }, "browserslist": { diff --git a/webapp/public/index.html b/webapp/public/index.html index 427f402..ec6e3d2 100644 --- a/webapp/public/index.html +++ b/webapp/public/index.html @@ -24,7 +24,7 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> - React App + Corda Chechers diff --git a/webapp/public/logo192.png b/webapp/public/logo192.png deleted file mode 100644 index fc44b0a..0000000 Binary files a/webapp/public/logo192.png and /dev/null differ diff --git a/webapp/public/logo512.png b/webapp/public/logo512.png deleted file mode 100644 index a4e47a6..0000000 Binary files a/webapp/public/logo512.png and /dev/null differ diff --git a/webapp/public/manifest.json b/webapp/public/manifest.json index 080d6c7..247e213 100644 --- a/webapp/public/manifest.json +++ b/webapp/public/manifest.json @@ -1,21 +1,11 @@ { - "short_name": "React App", - "name": "Create React App Sample", + "short_name": "Checkers", + "name": "Corda Checkers", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" - }, - { - "src": "logo192.png", - "type": "image/png", - "sizes": "192x192" - }, - { - "src": "logo512.png", - "type": "image/png", - "sizes": "512x512" } ], "start_url": ".",