Server IP : 162.213.251.212 / Your IP : 3.145.156.35 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/./www/easybuyer/node_modules/laravel-mix/src/components/ |
Upload File : |
let Preprocessor = require('./Preprocessor'); class Sass extends Preprocessor { /** * Required dependencies for the component. */ dependencies() { this.requiresReload = true; return tap( [ 'sass-loader@8.*', Mix.seesNpmPackage('node-sass') ? 'node-sass' : 'sass' ], dependencies => { if (Config.processCssUrls) { dependencies.push('resolve-url-loader@3.1.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' }, implementation: () => Mix.seesNpmPackage('node-sass') ? require('node-sass') : require('sass') }, pluginOptions, { sourceMap: true } ); } } module.exports = Sass;