Hi,
I have an app with some components (this used to be a web app) and when I run ionic serve
, the browser tries to load them
Here’s my folder structure (which is outside of the default src/pages)
This is how I declare my scss
@Component({
selector: ‘anonymous-footer’,
templateUrl: ‘./anonymous-footer.component.html’,
styleUrls: [’./anonymous-footer.component.scss’]
})
export class AnonymousFooterComponent { … }
ionic info
cli packages: (C:\Users\panuc\AppData\Roaming\npm\node_modules)
@ionic/cli-utils : 1.9.2
ionic (Ionic CLI) : 3.9.2
global packages:
Cordova CLI : 7.0.1
local packages:
@ionic/app-scripts : 2.1.3
Cordova Platforms : android 6.2.3
Ionic Framework : ionic-angular 3.6.0
System:
Node : v8.1.4
npm : 5.3.0
OS : Windows 10
Running ionic serve, the browser then attempts to load the scss files and they don’t exist in the www folder (should they?)
Please help me