{"library":"scss-loader","title":"scss-loader","description":"A webpack loader that compiles SCSS files into CSS with additional features like source maps and custom functions. Version 0.0.1 is an initial release with minimal documentation. It differentiates from sass-loader by offering built-in goodies but remains unmaintained and experimental. Release cadence is unknown. Status is deprecated due to lack of maintenance and limited features compared to sass-loader.","language":"javascript","status":"deprecated","last_verified":"Sat Apr 25","install":{"commands":["npm install scss-loader"],"cli":null},"imports":["import scssLoader from 'scss-loader'","import type { ScssLoaderOptions } from 'scss-loader'","import { sassFunctions } from 'scss-loader'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// webpack.config.cjs\nconst scssLoader = require('scss-loader');\n\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.scss$/,\n        use: [\n          'style-loader',\n          'css-loader',\n          {\n            loader: 'scss-loader',\n            options: {\n              sourceMap: true,\n              functions: {}\n            }\n          }\n        ]\n      }\n    ]\n  }\n};","lang":"javascript","description":"Sets up webpack to process .scss files with scss-loader, style-loader, and css-loader. Enables source maps for debugging.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}