I know that a question related to has been Module not found: Error: Can't resolve './$$_gendir/app/app.module.ngfactory' in...asked here many times. But, I think, here is a calm interesting situation that I am trying to describe below:
I have a node installed on two machines with Ubuntu 16.10 and Ubuntu 17.04.
1. On ubuntu 16.04
Node is installed through these command lines:
sudo apt-get install python-software-properties
curl -sL https:
sudo apt-get install nodejs
2. On ubuntu 17.04
Ubuntu 17.04 already has a new version of node. Installation is done through
sudo apt-get install nodejs
3. What is common between two machines?
3.1. Node and npm version:
node -v
# v7.10.0
npm -v
# 4.2.0
3.2. Angular4 application is created via @ angular / cli
sudo npm install -g @angular/cli
ng new my-app
3.3. Githbub repo for angular4 app with docker
Both machines use the same angular4-on-nginx-with-docker repo
4. What is the difference?
4.1. On Ubuntu 16.10
$ ng build --prod
Hash: 64b40519b4565aa62e0b
Time: 10106ms
chunk {0} polyfills.71b130084c52939ca448.bundle.js (polyfills) 177 kB {4} [initial] [rendered]
chunk {1} main.e81f19d3f6b27a436c79.bundle.js (main) 1.09 kB {3} [initial] [rendered]
chunk {2} styles.d41d8cd98f00b204e980.bundle.css (styles) 69 bytes {4} [initial] [rendered]
chunk {3} vendor.f7457d5ac1e9743fd76f.bundle.js (vendor) 849 kB [initial] [rendered]
chunk {4} inline.18e445e37a0efd4dcfa2.bundle.js (inline) 0 bytes [entry] [rendered]
ERROR in ./src/main.ts
Module not found: Error: Can't resolve './$$_gendir/app/app.module.ngfactory' in '/home/amine/DockerProjects/tt/nginx/frontend/src'
@ ./src/main.ts 3:0-74
@ multi ./src/main.ts
PS ./src/main.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);
4,2. Ubuntu 17.04
$ ng build --prod
Hash: ab00cb280399614d6ea9
Time: 16640ms
chunk {0} polyfills.71b130084c52939ca448.bundle.js (polyfills) 177 kB {4} [initial] [rendered]
chunk {1} main.97abdc47ac3699c01fa5.bundle.js (main) 5.27 kB {3} [initial] [rendered]
chunk {2} styles.d41d8cd98f00b204e980.bundle.css (styles) 69 bytes {4} [initial] [rendered]
chunk {3} vendor.0a8aa978ae08e1954b1c.bundle.js (vendor) 1.89 MB [initial] [rendered]
chunk {4} inline.3da3f5efaa0601772495.bundle.js (inline) 0 bytes [entry] [rendered]
5.
! git clone. , , AOT, , ?
,,