UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

27 lines (24 loc) 383 B
'use strict'; const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); module.exports = { module: { rules: [ { test: /\.pug$/, use: [ 'pug-loader?self' ] }, { test: /\.css$/, use: [ 'style-loader', 'css-loader' ] } ] }, plugins: [ new UglifyJSPlugin() ] };