Skip to content

Commit 050fbb7

Browse files
publish build
1 parent 1a1d398 commit 050fbb7

11 files changed

+114
-0
lines changed

docs/.htaccess

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<ifModule mod_rewrite.c>
2+
3+
4+
#######################################################################
5+
# GENERAL #
6+
#######################################################################
7+
8+
# Make apache follow sym links to files
9+
Options +FollowSymLinks
10+
# If somebody opens a folder, hide all files from the resulting folder list
11+
IndexIgnore */*
12+
13+
14+
#######################################################################
15+
# REWRITING #
16+
#######################################################################
17+
18+
# Enable rewriting
19+
RewriteEngine On
20+
21+
# If its not HTTPS
22+
RewriteCond %{HTTPS} off
23+
24+
# Comment out the RewriteCond above, and uncomment the RewriteCond below if you're using a load balancer (e.g. CloudFlare) for SSL
25+
# RewriteCond %{HTTP:X-Forwarded-Proto} !https
26+
27+
# Redirect to the same URL with https://, ignoring all further rules if this one is in effect
28+
RewriteRule ^(.*) https://%{HTTP_HOST}/$1 [R,L]
29+
30+
# If we get to here, it means we are on https://
31+
32+
# If the file with the specified name in the browser doesn't exist
33+
RewriteCond %{REQUEST_FILENAME} !-f
34+
35+
# and the directory with the specified name in the browser doesn't exist
36+
RewriteCond %{REQUEST_FILENAME} !-d
37+
38+
# and we are not opening the root already (otherwise we get a redirect loop)
39+
RewriteCond %{REQUEST_FILENAME} !\/$
40+
41+
# Rewrite all requests to the root
42+
RewriteRule ^(.*) /
43+
44+
</ifModule>
45+
46+
<IfModule mod_headers.c>
47+
# Do not cache sw.js, required for offline-first updates.
48+
<FilesMatch "sw\.js$">
49+
Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
50+
Header set Pragma "no-cache"
51+
</FilesMatch>
52+
</IfModule>

docs/0.42649f6df602ba7bb12c.chunk.js

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/1.40c3955d15cc30d14b6a.chunk.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/2.1ce5b944ede2e6757d34.chunk.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/3.65497fea9b239ad057a5.chunk.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/4.78e93bb4463044695dd9.chunk.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/favicon.ico

361 KB
Binary file not shown.

docs/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="manifest" href="manifest.json"><meta name="mobile-web-app-capable" content="yes"><title>UX Rec</title></head><body><noscript>If you're seeing this message, that means <strong>JavaScript has been disabled on your browser</strong>, please <strong>enable JS</strong> to make this app work.</noscript><div id="app"></div><script type="text/javascript" src="./main.257254a4940a28bd2e6e.js"></script></body></html>

docs/main.257254a4940a28bd2e6e.js

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/manifest.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "UX Rec",
3+
"icons": [{
4+
"src": "favicon.png",
5+
"sizes": "48x48",
6+
"type": "image/png",
7+
"density": 1.0
8+
}, {
9+
"src": "favicon.png",
10+
"sizes": "96x96",
11+
"type": "image/png",
12+
"density": 2.0
13+
}, {
14+
"src": "favicon.png",
15+
"sizes": "144x144",
16+
"type": "image/png",
17+
"density": 3.0
18+
}, {
19+
"src": "favicon.png",
20+
"sizes": "192x192",
21+
"type": "image/png",
22+
"density": 4.0
23+
}],
24+
"start_url": "index.html",
25+
"display": "standalone",
26+
"orientation": "portrait",
27+
"background_color": "#FFFFFF"
28+
}

0 commit comments

Comments
 (0)