PHP Classes

File: webpack/plugins/index.js

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WP Emailer   webpack/plugins/index.js   Download  
File: webpack/plugins/index.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WP Emailer
Allow WordPress users to configure email settings
Author: By
Last change:
Date: 1 year ago
Size: 384 bytes
 

Contents

Class file image Download
/** * External dependencies. */ const miniCssExtractPlugin = require('mini-css-extract-plugin'); const { VueLoaderPlugin } = require('vue-loader'); const plugins = [ new miniCssExtractPlugin({ filename: '../css/main.css', }), new VueLoaderPlugin(), ]; if (process.env.NODE_ENV === 'development') { plugins.push(require('./browser-sync')); } module.exports = plugins;