/home/sharedstore/public_html/prestashop.sharedstore.ma/modules/ps_facetedsearch
NameSizeModeActions
config/-0755rm
controllers/-0755rm
img/-0755rm
src/-0755rm
upgrade/-0755rm
views/-0755rm
_dev/-0755rm
.bablerc470755editdlrm
.htaccess3640755editdlrm
composer.lock1098100755editdlrm
config.xml4940755editdlrm
delete.gif2130755editdlrm
index.php11140755editdlrm
logo.png76000755editdlrm
package-lock.json6391220755editdlrm
ps_facetedsearch-23e8a0a9.php57300644editdlrm
ps_facetedsearch-916dff31.php19100644editdlrm
ps_facetedsearch-60575b3f.php19100644editdlrm
ps_facetedsearch-attribute-indexer.php17440755editdlrm
ps_facetedsearch-clear-cache.php16440755editdlrm
ps_facetedsearch-price-indexer.php18710755editdlrm
ps_facetedsearch.php772260755editdlrm
ps_facetedsearch.tpl9920755editdlrm
webpack.config.js17600755editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/modules/ps_facetedsearch/webpack.config.js (1760B)
/** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License 3.0 (AFL-3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/AFL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * @author PrestaShop SA * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) */ const {CleanWebpackPlugin} = require('clean-webpack-plugin'); const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const path = require('path'); module.exports = { entry: { front: './_dev/front', back: './_dev/back', }, output: { filename: '[name].js', path: path.resolve(__dirname, './views/dist'), }, module: { rules: [ { test: /\.js$/, exclude: /node_modules/, use: ['babel-loader'], }, { test: /\.s?css$/, use: [ 'style-loader', { loader: MiniCssExtractPlugin.loader, options: { esModule: false, }, }, 'css-loader', 'sass-loader', ], }, ], }, stats: { colors: true, }, devtool: 'source-map', plugins: [ new CleanWebpackPlugin(), new MiniCssExtractPlugin({ filename: '[name].css', }), ], };