Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jimfrenette/hugo-starter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'webpack/base.config.js')
-rw-r--r--webpack/base.config.js19
1 files changed, 13 insertions, 6 deletions
diff --git a/webpack/base.config.js b/webpack/base.config.js
index 1ae80a8..7dfaec9 100644
--- a/webpack/base.config.js
+++ b/webpack/base.config.js
@@ -1,14 +1,13 @@
const path = require('path');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
+const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
module.exports = {
context: path.resolve(__dirname, '../src'),
+ plugins: [new MiniCssExtractPlugin()],
entry: {
app: ['./js/index.js']
},
- plugins: [
- new MiniCssExtractPlugin
- ],
output: {
path: path.resolve(__dirname, '../static/dist')
},
@@ -20,9 +19,11 @@ module.exports = {
MiniCssExtractPlugin.loader,
'css-loader',
{
- loader: 'postcss-loader' },
+ loader: 'postcss-loader'
+ },
{
- loader: 'sass-loader' }
+ loader: 'sass-loader'
+ }
]
},
{
@@ -31,5 +32,11 @@ module.exports = {
use: 'babel-loader'
}
]
- }
+ },
+ optimization: {
+ minimizer: [
+ `...`,
+ new CssMinimizerPlugin(),
+ ],
+ },
} \ No newline at end of file