![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/clinic.corals.io/node_modules/laravel-mix/src/components/ |
let Preprocessor = require('./Preprocessor'); class Sass extends Preprocessor { /** * Required dependencies for the component. */ dependencies() { this.requiresReload = true; return tap(['sass-loader@^12.1.0', 'sass'], dependencies => { if (Config.processCssUrls) { dependencies.push('resolve-url-loader@^4.0.0'); } }); } /** * Register the component. * * @param {*} src * @param {string} output * @param {Object} pluginOptions * @param {Array} postCssPlugins */ register(src, output, pluginOptions = {}, postCssPlugins = []) { return this.preprocess( 'sass', src, output, this.pluginOptions(pluginOptions), postCssPlugins ); } /** * Build the plugin options for sass-loader. * * @param {Object} pluginOptions * @returns {Object} */ pluginOptions(pluginOptions) { return Object.assign( { sassOptions: { precision: 8, outputStyle: 'expanded' } }, pluginOptions, { sourceMap: true } ); } chunkRegex() { return /\.(css|s[ac]ss)$/; } } module.exports = Sass;