Skip to content
This repository has been archived by the owner on Jan 25, 2021. It is now read-only.

Commit

Permalink
⚡ Under the hood improvements
Browse files Browse the repository at this point in the history
📸 Upadated screenshots
  • Loading branch information
liyasthomas committed Jul 18, 2019
1 parent 6dfedbc commit fe21c95
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ When I wrote this, only God and I understood what I was doing. Now, only God kno

**Minimal URL can be hosted on any website hosting services like GitHub/GitLab pages, Firebase/Heroku hosting, yoursite.com, etc. For hosting in such custom domains, Its advised to `npm run-scripts build` and upload `output` folder. Hosting on GitHub pages was just for proof of concept.**

**IMPORTANT: Minimal URL is an experimental project. Don't shorten sensitive contents/URLs with it. jsonstore.io endpoints are always public making shortened URLs visible for everyone.**
<span style="color:red;">**IMPORTANT: Minimal URL is an experimental project. Don't shorten sensitive contents/URLs with it. jsonstore.io endpoints are always public making shortened URLs visible for everyone.**</span>

---

## Demo

[mnmlurl.ml](https://mnmlurl.ml) _(production)_

[liyasthomas.github.io/mnmlurl](https://liyasthomas.github.io/mnmlurl) _(development)_
[liyasthomas.github.io/mnmlurl/src](https://liyasthomas.github.io/mnmlurl/src) _(development)_

---

Expand Down Expand Up @@ -91,7 +91,7 @@ This project is developed by [Liyas Thomas](https://github.com/liyasthomas) usin
* [Liyas Thomas](https://github.com/liyasthomas)

### Contributors
* [Liyas Thomas](https://github.com/liyasthomas)
* [Contributors](https://github.com/liyasthomas/mnmlurl/graphs/contributors)

See also the list of [contributors](https://github.com/liyasthomas/mnmlurl/graphs/contributors) who participated in this project.

Expand Down
Binary file modified src/icons/screely.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/icons/screely2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ workbox.routing.registerRoute(
workbox.precaching.precacheAndRoute([
'/index.css',
'/index.js',
'/manage.js',
{
url: '/index.html',
revision: '383676'
Expand All @@ -49,7 +50,8 @@ var CURRENT_CACHES = {
self.addEventListener('install', function (event) {
var now = Date.now();
var urlsToPrefetch = [
'index.html'
'index.html',
'manage.html'
];
// All of these logging statements should be visible via the "Inspect" interface
// for the relevant SW accessed via chrome://serviceworker-internals
Expand Down

0 comments on commit fe21c95

Please sign in to comment.