Prepared for transition to extensin repo

This commit is contained in:
Nicolai Ort 2021-08-14 13:34:16 +02:00
parent 8857b05860
commit ba74bc4161
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
5 changed files with 1 additions and 67 deletions

View File

@ -1,11 +0,0 @@
FROM registry.odit.services/hub/library/node:16-alpine3.13
WORKDIR /app
COPY package.json *.config.cjs *.config.js ./
RUN yarn
COPY src ./src
COPY static ./static
RUN yarn build
# final image
FROM registry.odit.services/hub/fholzer/nginx-brotli:v1.19.1
COPY --from=0 /app/build /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/nginx.conf

View File

@ -1,6 +0,0 @@
version: '3'
services:
http:
build: .
ports:
- 4269:80

0
manifest.json Normal file
View File

View File

@ -1,49 +0,0 @@
events {
}
http {
include mime.types;
sendfile on;
server {
error_page 404 /index.html;
root /usr/share/nginx/html;
location ~ /index\.html$ {
internal;
add_header Cache-Control 'no-store';
}
location ~* \.(png|jpg|jpeg|webp|gif|ico|woff|otf|ttf|eot|svg|txt|pdf|docx?|xlsx?)$ {
access_log off;
expires 1y;
}
location / {
try_files $uri $uri/ /index.html;
}
# --- GZIP
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types application/javascript
application/rss+xml
application/vnd.ms-fontobject
application/x-font
application/x-font-opentype
application/x-font-otf
application/x-font-truetype
application/x-font-ttf
application/x-javascript
application/xhtml+xml
application/xml
font/opentype
font/otf
font/ttf
image/svg+xml
image/x-icon
text/css
text/javascript
text/plain
text/xml;
}
}

View File

@ -1,5 +1,5 @@
{
"name": "@odit/shortener-frontend",
"name": "@odit/linkylinky-extension",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",