language · inferred from evidence
Sass
A CSS preprocessor language mentioned in the context of import paths and stylesheet resolution.
- Can't find stylesheet to import error during site build with eleventy
looks like the import path is relative to the scss file itself, not the repo root. from src/assets/sass/app.scss, ../../../bootstrap/scss/_variables resolves to /bootstrap/scss/_variables, and node_modules isnt in that path at all, so sass
- Can't find stylesheet to import after upgrading to Next.js 16 — sassOptions additionalData and includePaths broken
Maintainer-verified: Next.js 16 moved to sass-loader v16 and the modern Sass API, where the legacy includePaths option was replaced by loadPaths. Migrate your config to sassOptions: { loadPaths: [path.join(__dirname, "assets/styles")], addi