varbase_layout_builder-9.0.0-alpha2/webpack.config.build.plugins.js
webpack.config.build.plugins.js
const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
// eslint-disable-next-line import/no-extraneous-dependencies
const autoprefixer = require('autoprefixer');
const RemoveEmptyScriptsPlugin = require('webpack-remove-empty-scripts');
const isDev = process.env.NODE_ENV !== 'production';
// Compiling SCSS files for custom Bootstrap Styles plugins.
module.exports = {
mode: 'production',
entry: {
// ################################################
// SCSS
// ################################################
// Plugins
'horizontal-alignment': ['./scss/theme/plugins/horizontal-alignment.scss'],
'vertical-alignment': ['./scss/theme/plugins/vertical-alignment.scss'],
},
output: {
path: path.resolve(__dirname, 'css/plugins'),
pathinfo: false,
publicPath: '',
},
module: {
rules: [
{
test: /\.(png|jpe?g|gif|svg)$/,
exclude: /sprite\.svg$/,
type: 'javascript/auto',
use: [
{
loader: 'file-loader',
options: {
name: '[path][name].[ext]', // ?[contenthash]
outputPath: '../../',
esModule: false,
},
},
{
loader: 'img-loader',
options: {
enabled: !isDev,
},
},
],
},
{
test: /\.(css|scss)$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
{
loader: 'css-loader',
options: {
sourceMap: isDev,
importLoaders: 2,
url: {
filter: (url) => {
// Don't handle sprite svg or any image paths
if (url.includes('sprite.svg') || url.includes('/images/')) {
return false;
}
return true;
},
},
},
},
{
loader: 'postcss-loader',
options: {
sourceMap: isDev,
postcssOptions: {
plugins: [autoprefixer()],
},
},
},
{
loader: 'sass-loader',
options: {
sourceMap: isDev,
// Global SCSS imports:
additionalData: `
@use "sass:color";
@use "sass:math";
`,
},
},
],
},
],
},
resolve: {
modules: [path.join(__dirname, 'node_modules')],
extensions: ['.js', '.json'],
},
plugins: [
new RemoveEmptyScriptsPlugin(),
new CleanWebpackPlugin({
cleanStaleWebpackAssets: false,
}),
new MiniCssExtractPlugin(),
],
watchOptions: {
aggregateTimeout: 300,
ignored: [
'**/*.woff',
'**/*.json',
'**/*.woff2',
'**/*.jpg',
'**/*.png',
'**/*.svg',
'node_modules',
'images',
],
},
};
