No Service worker files ngsw.json / ngsw-worker.json generated when running build --prod. Angular 5

删除回忆录丶 提交于 2020-12-02 07:15:36

问题


Using angular 5.1.2 Angular-cli 1.6.3

all files are pretty vanilla. dist folder is created

My ngsw-config.json

{
"index": "/index.html",
"assetGroups": [
    {
        "name": "app",
        "installMode": "prefetch",
        "resources": {
            "files": [
                "/favicon.ico",
                "/index.html"
            ],
            "versionedFiles": [
                "/*.bundle.css",
                "/*.bundle.js",
                "/*.chunk.js"
            ]
        }
    },
    {
        "name": "assets",
        "installMode": "lazy",
        "updateMode": "prefetch",
        "resources": {
            "files": [
                "/assets/**"
            ]
        }
    }]   

}

my app.module.ts uses

  ServiceWorkerModule.register('ngsw-worker.js', { enabled: environment.production })

am using vanilla environment.ts and environment.prod.ts

main.ts

import './polyfills.ts';
import {enableProdMode} from '@angular/core';
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';

import {AppModule} from './app/app.module';
import {environment} from './environments/environment';

if (environment.production) {
enableProdMode();
}

platformBrowserDynamic().bootstrapModule(AppModule)
.then(() => {
if ('serviceWorker' in navigator) {
    navigator.serviceWorker.register('ngsw-worker.js');
}

})
.catch(err => console.log(err));

Not sure what else to check


回答1:


Do you add serviceWorker property to apps first entry in .angular-cli.json? If not, angular-cli not built it.

"apps": [
  {
    ...
    "serviceWorker": true
  }
}

EDIT As of December 2018, .angular-cli.json is now angular.json, and the format for the serviceWorker is now:

{
    ...
    "projects": {
         "my-project-name": {
             "architect": {
                 "build": {
                     "configurations": {
                        "production": {
                           "serviceWorker": true
                        }
                     }
                 }
             }
         }
    }

You'll need to specify serviceWorker: true for every configuration where you want the service worker.




回答2:


I had the same problem. It turns out I was using a old package

"@angular-devkit/build-angular": "~0.6.6"

This should be

"@angular-devkit/build-angular": "~0.10.0",

after this, the service worker is copied

Also make sure to be using latest Angular 7 and lateset Angular CLI




回答3:


After a long search, we found out that the missing --prod flag in our build makes the problem. Exactly this one produces the service-worker files and no additional build flag is able to do it (same with uglifying and the uglifyer was the reason why we had exchanged the --build flag against --env=build earlier). More information about what happens on the --build flag to be found here: Angular 2 with CLI - build for production.




回答4:


It appears my app.module.ts was missing a space

I had: environment.production ? ServiceWorkerModule.register('/ngsw-worker.js') :[]

changed to: environment.production ? ServiceWorkerModule.register('/ngsw-worker.js') : []



来源:https://stackoverflow.com/questions/48101566/no-service-worker-files-ngsw-json-ngsw-worker-json-generated-when-running-buil

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!