File: /var/www/ideasforum.kaunokolegija.lt/wp-content/plugins/insert-pages/webpack.config.js
const path = require( 'path' );
const webpack = require( 'webpack' );
const ExtractTextPlugin = require( 'extract-text-webpack-plugin' );
// const BrowserSyncPlugin = require( 'browser-sync-webpack-plugin' );
// Set different CSS extraction for editor only and common block styles
const blockCSSPlugin = new ExtractTextPlugin( {
filename: './lib/gutenberg-block/dist/block.css',
} );
// Configuration for the ExtractTextPlugin.
const extractConfig = {
use: [
{
loader: 'raw-loader',
},
{
loader: 'postcss-loader',
options: {
plugins: [ require( 'autoprefixer' ) ],
},
},
{
loader: 'sass-loader',
query: {
outputStyle:
'production' === process.env.NODE_ENV ? 'compressed' : 'nested',
},
},
],
};
module.exports = {
entry: {
'./lib/gutenberg-block/dist/block' : './lib/gutenberg-block/src/index.js',
},
output: {
path: path.resolve( __dirname ),
filename: '[name].js',
},
watch: true,
devtool: 'cheap-eval-source-map',
module: {
rules: [
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
},
},
{
test: /\.s?css$/,
use: blockCSSPlugin.extract( extractConfig ),
},
],
},
plugins: [
blockCSSPlugin,
// new BrowserSyncPlugin({
// // Load localhost:3333 to view proxied site
// host: 'localhost',
// port: '3333',
// // Change proxy to your local WordPress URL
// proxy: 'https://gutenberg.local'
// })
],
};