- Introduce cache busting (to circumvent aggressive caching on iOS - but ideal in other contexts as well)
- Change the build process to allow cache busting - Optimisations to the build process - Several improvements of UI geared towards mobile experience -
This commit is contained in:
12
nginx/frontend_src/entries/chat-client.html
Normal file
12
nginx/frontend_src/entries/chat-client.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Chat Client Entry</title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Minimal HTML entry used solely for Parcel to produce hashed JS/CSS bundles. -->
|
||||
<script type="module" src="../js/chat-client.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
12
nginx/frontend_src/entries/main.html
Normal file
12
nginx/frontend_src/entries/main.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Main Entry</title>
|
||||
</head>
|
||||
<body>
|
||||
<!-- Minimal HTML entry used solely for Parcel to produce hashed JS/CSS bundles. -->
|
||||
<script type="module" src="../js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user