Answers for "how stop ivy in angualr 9"

0

how stop ivy in angualr 9

{
  "compilerOptions": {
    "module": "esnext",
    // ...
  },
  "angularCompilerOptions": {
    "enableIvy": true,
    "allowEmptyCodegenFiles": true
  }
}
Posted by: Guest on June-01-2020
0

how stop ivy in angualr 9

npm i -g @angular/cli@latestng update
Posted by: Guest on June-01-2020
0

how stop ivy in angualr 9

{
  "projects": {
    "your-project": {
      "architect": {
        "build": {
          "options": {
            ...
            "aot": true,
          }
        }
      }
    }
  }
}
Posted by: Guest on June-01-2020

Browse Popular Code Answers by Language