favicon
This commit is contained in:
@@ -11,6 +11,7 @@ COPY frontend/tsconfig*.json ./
|
|||||||
COPY frontend/vite.config.ts ./
|
COPY frontend/vite.config.ts ./
|
||||||
COPY frontend/index.html ./
|
COPY frontend/index.html ./
|
||||||
COPY frontend/src ./src
|
COPY frontend/src ./src
|
||||||
|
COPY frontend/public ./public
|
||||||
COPY shared ./shared
|
COPY shared ./shared
|
||||||
|
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
@@ -18,6 +19,8 @@ RUN npm run build
|
|||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
|
|
||||||
COPY --from=build /app/dist /usr/share/nginx/html
|
COPY --from=build /app/dist /usr/share/nginx/html
|
||||||
|
COPY frontend/public/icon-64.png /usr/share/nginx/html/icon-64.png
|
||||||
|
COPY frontend/public/icon-512.png /usr/share/nginx/html/icon-512.png
|
||||||
COPY frontend/nginx.conf /etc/nginx/conf.d/default.conf
|
COPY frontend/nginx.conf /etc/nginx/conf.d/default.conf
|
||||||
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
|||||||
@@ -3,6 +3,11 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="/icon-64.png" />
|
||||||
|
<link rel="icon" type="image/png" sizes="64x64" href="/icon-64.png" />
|
||||||
|
<link rel="icon" type="image/png" sizes="512x512" href="/icon-512.png" />
|
||||||
|
<link rel="apple-touch-icon" href="/icon-512.png" />
|
||||||
|
<meta name="theme-color" content="#11192a" />
|
||||||
<title>Contracts Companion</title>
|
<title>Contracts Companion</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
BIN
frontend/public/icon-512.png
Normal file
BIN
frontend/public/icon-512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.0 KiB |
BIN
frontend/public/icon-64.png
Normal file
BIN
frontend/public/icon-64.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
Reference in New Issue
Block a user