mirror of https://github.com/Chocobozzz/PeerTube
Fix service worker registration
parent
41df592101
commit
93df58cc48
|
@ -14,12 +14,7 @@
|
||||||
"output": "./client/assets/images",
|
"output": "./client/assets/images",
|
||||||
"allowOutsideOutDir": false
|
"allowOutsideOutDir": false
|
||||||
},
|
},
|
||||||
{
|
"./manifest.json"
|
||||||
"glob": "",
|
|
||||||
"input": "./manifest.json",
|
|
||||||
"output": "./manifest.json",
|
|
||||||
"allowOutsideOutDir": false
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
"deployUrl": "client/",
|
"deployUrl": "client/",
|
||||||
"index": "index.html",
|
"index": "index.html",
|
||||||
|
|
|
@ -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
|
// 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.
|
// `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`.
|
// The list of which env maps to which file can be found in `.angular-cli.json`.
|
||||||
|
|
|
@ -7,6 +7,8 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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="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 -->
|
<!-- Web Manifest file -->
|
||||||
<link rel="manifest" href="/manifest.json">
|
<link rel="manifest" href="/manifest.json">
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"background_color": "white",
|
"background_color": "#fff",
|
||||||
"theme_color": "black",
|
"theme_color": "#fff",
|
||||||
"description": "A federated video streaming platform using P2P",
|
"description": "A federated video streaming platform using P2P",
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
"orientation": "any",
|
"orientation": "any",
|
||||||
|
|
|
@ -12,6 +12,7 @@ const clientsRouter = express.Router()
|
||||||
const distPath = join(root(), 'client', 'dist')
|
const distPath = join(root(), 'client', 'dist')
|
||||||
const assetsImagesPath = join(root(), 'client', 'dist', 'client', 'assets', 'images')
|
const assetsImagesPath = join(root(), 'client', 'dist', 'client', 'assets', 'images')
|
||||||
const manifestPath = join(root(), 'client', 'dist', 'manifest.json')
|
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 embedPath = join(distPath, 'standalone', 'videos', 'embed.html')
|
||||||
const indexPath = join(distPath, 'index.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
|
// Static HTML/CSS/JS client files
|
||||||
clientsRouter.use('/manifest.json', express.static(manifestPath, { maxAge: STATIC_MAX_AGE }))
|
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', express.static(distPath, { maxAge: STATIC_MAX_AGE }))
|
||||||
clientsRouter.use('/client/assets/images', express.static(assetsImagesPath, { maxAge: STATIC_MAX_AGE }))
|
clientsRouter.use('/client/assets/images', express.static(assetsImagesPath, { maxAge: STATIC_MAX_AGE }))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue