简体   繁体   中英

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

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

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.

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

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 .

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') : []

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM