Server IP : 162.213.251.212 / Your IP : 18.220.181.201 [ 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/builder/ |
Upload File : |
module.exports = function() { let rules = []; // Add support for loading HTML files. rules.push({ test: /\.html$/, loaders: ['html-loader'] }); // Add support for loading images. rules.push({ // only include svg that doesn't have font in the path or file name by using negative lookahead test: /(\.(png|jpe?g|gif|webp)$|^((?!font).)*\.svg$)/, loaders: [ { loader: 'file-loader', options: { name: path => { if (!/node_modules|bower_components/.test(path)) { return ( Config.fileLoaderDirs.images + '/[name].[ext]?[hash]' ); } return ( Config.fileLoaderDirs.images + '/vendor/' + path .replace(/\\/g, '/') .replace( /((.*(node_modules|bower_components))|images|image|img|assets)\//g, '' ) + '?[hash]' ); }, publicPath: Config.resourceRoot } }, { loader: 'img-loader', options: Config.imgLoaderOptions } ] }); // Add support for loading fonts. rules.push({ test: /(\.(woff2?|ttf|eot|otf)$|font.*\.svg$)/, loader: 'file-loader', options: { name: path => { if (!/node_modules|bower_components/.test(path)) { return Config.fileLoaderDirs.fonts + '/[name].[ext]?[hash]'; } return ( Config.fileLoaderDirs.fonts + '/vendor/' + path .replace(/\\/g, '/') .replace( /((.*(node_modules|bower_components))|fonts|font|assets)\//g, '' ) + '?[hash]' ); }, publicPath: Config.resourceRoot } }); // Add support for loading cursor files. rules.push({ test: /\.(cur|ani)$/, loader: 'file-loader', options: { name: '[name].[ext]?[hash]', publicPath: Config.resourceRoot } }); return rules; };