im running nuxt with all v4 features enabled. i have a layers folder at the root of my project with a base layer. in here i wish to keep all my styles, assets, components, etc. in the nuxt config, im trying to reference the css file via
css: ["~/assets/css/styles.css"],
css: ["~/assets/css/styles.css"],
i think ive tried every combination of path alias and nothing works, i get the following
Pre-transform error: Failed to resolve import "app/assets/css/styles.css" from "virtual:nuxt:F%3A%2Fprojects%2Fcompany%2Fcompany-app%2F.nuxt%2Fcss.mjs".
Pre-transform error: Failed to resolve import "app/assets/css/styles.css" from "virtual:nuxt:F%3A%2Fprojects%2Fcompany%2Fcompany-app%2F.nuxt%2Fcss.mjs".
when dealing with local layers, how am i suppose to confidently reference file paths of that layer?