Fix service worker registration

pull/311/head
Chocobozzz 2018-02-22 11:54:17 +01:00
parent 41df592101
commit 93df58cc48
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
5 changed files with 7 additions and 9 deletions

View File

@ -14,12 +14,7 @@
"output": "./client/assets/images",
"allowOutsideOutDir": false
},
{
"glob": "",
"input": "./manifest.json",
"output": "./manifest.json",
"allowOutsideOutDir": false
}
"./manifest.json"
],
"deployUrl": "client/",
"index": "index.html",

View File

@ -1,4 +1,3 @@
// The file contents for the current environment will overwrite these during build.
// The build system defaults to the dev environment which uses `environment.ts`, but if you do
// `ng build --env=prod` then `environment.prod.ts` will be used instead.
// The list of which env maps to which file can be found in `.angular-cli.json`.

View File

@ -7,6 +7,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="PeerTube, a decentralized video streaming platform using P2P (BitTorrent) directly in the web browser" />
<meta name="theme-color" content="#fff" />
<!-- Web Manifest file -->
<link rel="manifest" href="/manifest.json">

View File

@ -1,6 +1,6 @@
{
"background_color": "white",
"theme_color": "black",
"background_color": "#fff",
"theme_color": "#fff",
"description": "A federated video streaming platform using P2P",
"display": "standalone",
"orientation": "any",

View File

@ -12,6 +12,7 @@ const clientsRouter = express.Router()
const distPath = join(root(), 'client', 'dist')
const assetsImagesPath = join(root(), 'client', 'dist', 'client', 'assets', 'images')
const manifestPath = join(root(), 'client', 'dist', 'manifest.json')
const serviceWorkerPath = join(root(), 'client', 'dist', 'ngsw-worker.js')
const embedPath = join(distPath, 'standalone', 'videos', 'embed.html')
const indexPath = join(distPath, 'index.html')
@ -27,6 +28,7 @@ clientsRouter.use('/videos/embed', (req: express.Request, res: express.Response,
// Static HTML/CSS/JS client files
clientsRouter.use('/manifest.json', express.static(manifestPath, { maxAge: STATIC_MAX_AGE }))
clientsRouter.use('/ngsw-worker.js', express.static(serviceWorkerPath, { maxAge: STATIC_MAX_AGE }))
clientsRouter.use('/client', express.static(distPath, { maxAge: STATIC_MAX_AGE }))
clientsRouter.use('/client/assets/images', express.static(assetsImagesPath, { maxAge: STATIC_MAX_AGE }))