I am trying to access my .scss file that imports all the other .scss files (they are all imported in styles.scss).
Even though I have added the path to my angular cli file, the file is still not accessible and no styling is being applied to my html elements.
Angular CLI: From the project folder where I run npm start, I added "../webstyles/src/styles.scss" as the path to access the file.
"apps": [
{
"root": "src",
"outDir": "dist",
"assets": [
"assets",
"favicon.ico",
"app/cms/demo.json"
],
"index": "index.html",
"main": "main.ts",
"polyfills": "polyfills.ts",
"test": "test.ts",
"tsconfig": "tsconfig.app.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "cb",
"styles": [
"../webstyles/src/styles.scss"
],
The error message reads: Module not found: Error: Can't resolve the path... within that project.
Unfortunately, I cannot provide the folder tree, but I have double-checked everything and can't find any mistakes.
What options do I have?