enable as PWA
This commit is contained in:
parent
88ae765672
commit
b7d58febe8
|
@ -15,7 +15,7 @@ app.set('view engine', 'ejs')
|
|||
app.set('views', path.join(__dirname, 'views'))
|
||||
|
||||
app.use(express.static(path.join(__dirname, 'public')))
|
||||
app.use(favicon(path.join(__dirname, 'views', 'favicon.ico')))
|
||||
app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')))
|
||||
app.use(bodyParser())
|
||||
|
||||
app.get('/', (req, res) => {
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"short_name": "FB to iCal",
|
||||
"name": "Facebook Event to iCal Converter",
|
||||
"icons": [
|
||||
{
|
||||
"src":"/icon-192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src":"/icon-512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"start_url": "/",
|
||||
"background_color": "#fff",
|
||||
"theme_color": "#fff",
|
||||
"display": "standalone"
|
||||
}
|
|
@ -3,7 +3,8 @@
|
|||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Facebook Events to iCal Converter</title>
|
||||
<link rel="manifest" href="/manifest.json">
|
||||
<title>Facebook Event to iCal Converter</title>
|
||||
<style>
|
||||
#current-download {
|
||||
display: none;
|
||||
|
|
Loading…
Reference in New Issue