I upgraded my app to Angular cli ^11.0.2 recently, from then my HTML and SCSS changes are not compiled on save even when ng serve is running. I have to save the respective ts file to get the html changes compile. I saw a related issue on Github with no proper solution(Here). Is this because of ivy engine ? or Did I miss any update on any particular npm package?
HTML, SCSS not compiled on save - Angular 11.0.2
830 views Asked by lakshman_dev At
1
There are 1 answers
Related Questions in FRONTEND
- How to perform CRUD operations on a static JSON array in Angular? (without API)
- Java and React WebSocket - Error Connection
- Why can't I use PUT requests?
- Adding Modules to a Namespace using IIFE
- How to use PrimeNG multiselect search to trigger an API call based on user search input and populate the multiselect with the retrieved data?
- Should I compress images in java backend before sending to frontend?
- Privsate channel doesn;t display messages - propably it's problem with authentication
- Swiper Js Slider Reveal Next Slider Partially
- How can i prevent the image from zooming in when i resize the browser?
- NextJs 14. Intercepting Routes. Modal. Routing Problem
- How to perform get, update, add and delete operation in a multi-parameter JSON array just like an API in Angular
- How to animate calculated position/container height when viewport changes?
- Applying a different position for each child of a parent element with a formula?
- (React)At rendering, initial value of zustand comesout firstly Please, give me your opinions
- My state is undefined despite being setted
Related Questions in ANGULAR-CLI
- FATAL ERROR: Reached heap limit Allocation failed - JavaScript heap out of memory in angular application
- What is the use of "Hash: fec054139de85795" in ng serve?
- Angular esbuild @angular/compiler missing from bundle file
- Angular build for subfolder
- angular.json : configuration for multiple library projects
- Getting Cannot read property 'polyfillWrapFlushCallback' of undefined
- Unable to install angular-cli on Windows 7 (using npm)
- This version of CLI is only compatible with Angular versions ^15.0.0, but Angular version 17.2.4 was found instead
- angular cli installation cannot be completed
- how can i use yarn with PnP in an already angular project?
- Angular CLI and node-gyp : Cannot assign to read only property 'cflags' of object '#<Object>'
- Angular v10: how do i handle this overlay issue of p-calendar
- Node.js version v16.20.2 detected. The Angular CLI requires a minimum of v18.13
- Angular: How to extract i18n ids from json source files to outpur it in xlf files
- configure Angular app with powers of deployUrl without using due to depreciation warning. (not baseHref)
Related Questions in IVY
- Defining an artifact name explicitly when publishing with Gradle
- No lib of ivy cache jars created when I create package or install
- Pyspark integration in Jupyter-singleuser
- angular 16 ng build library fails (ivy full compilation mode)
- Upgrading ancient build: publishing Ivy dependencies
- Angular 17.2.0 does not support ConnectionServiceModule?
- Error: Cannot resolve type entity i2.IconsModule to symbol
- NG3003: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed
- apache Ivy pulling artifact from AWS CodeArtifact
- How can I download artifacts from a Maven repository in a private Gitlab project using Ivy?
- Does bug IVY-1576 still exist in 2.5.2?
- 'MatFormFieldModule' does not appear to be an NgModule class
- How can I delete unwanted keys in spacemacs org-cite/citar?
- Download JavaFX dependency using Ivy
- After Angular 16 upgrade, throws errors for library mydatepicker and angular2-virtual-scroll not compatible with Angular ivy
Related Questions in ANGULAR11
- DevExtreme dxo-master-detail load data function
- empty path (/) not redirecting to dashboard in angular 17
- How to submit the formarray in angular in the given format?
- ng2-pdf-viewer not working in production giving error
- Angular module lazy load cache issue
- Hide select all checkbox when search data not in list of ng-multiselect-dropdown
- NgxAdmin freezes when load large Amount of nested data in Angular 11
- Can i add am charts dynamically on each page of dashboard. where i am having multiple page with multiple widgets?
- Using and Calling a Specific Commit for a ngx-chess-board Package and Importing it to an Angular module for use Typescript
- Spring 4.3 SSE returns net::ERR_INCOMPLETE_CHUNKED_ENCODING 200
- How to style Angular component dynamically
- AgGrid autoHeight on columns changes the scroll bar position
- Need to display this code as fixed header in all PDFmake pages
- How to fix angular lz-string no export member
- ng-particle options signature not miss matched Error
Related Questions in ANGULAR-CLI-V9
- Not able to serve my angular app after upgrading from Angular 8 to 9
- How I Implement Google picker in Angular CLI?
- configuring custom path for ngcc in angular project
- an issue of installing ngx-bootstrap with Angular 14 (Package "ngx-bootstrap" was found but does not support schematics)
- ERROR Error: Angular JIT compilation failed: '@angular/compiler' not loaded
- Angualar 10 : Add descritpion (*d.ts) file manually to compilation
- Angular CLI and react JavaScript run in same project how to make it possible
- HTML, SCSS not compiled on save - Angular 11.0.2
- Angular Library Debugging - WebStorm
- MatTableDataSource from another component
- Pass data to Service from main.ts file in Angular application
- Issue while installing angular cli on stable node version
- Corrupted file - .xml2js.DELETE/package,json in node_modules within an Angular project
- error after updating Angular cli from 8 to 10
- error TS2722: Cannot invoke an object which is possibly 'undefined'
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
This seemed to happen due to default Ivy engine configuration with Angular 11.
I disabled the
enableIvyflag in tsconfig.json file like this :"angularCompilerOptions": { "enableIvy": false, "allowEmptyCodegenFiles": true }A friend suggested that AOT with ivy configuration must be avoided in dev environment to avoid this kind of issues.