From e3fba3dcd493f609e107435867c4a67cb7ee420f Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 21 Nov 2020 14:13:41 +0100 Subject: import materialize sass sources instead of relying on npm --- sass/webpack.config.js | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 sass/webpack.config.js (limited to 'sass/webpack.config.js') diff --git a/sass/webpack.config.js b/sass/webpack.config.js deleted file mode 100644 index 9696dbb..0000000 --- a/sass/webpack.config.js +++ /dev/null @@ -1,47 +0,0 @@ -const MiniCssExtractPlugin = require('mini-css-extract-plugin'); -const path = require('path'); -console.log(path.resolve('../public/static/css/')); - -module.exports = { - mode: 'production', - entry: { - light: './src/light/index.scss', - dark: './src/dark/index.scss', - }, - output: { - path: path.resolve('../public/static/css/'), - }, - plugins: [ - new MiniCssExtractPlugin({ - filename: '[name].min.css', - chunkFilename: '[id].css', - }), - ], - module: { - rules: [ - { - test: /\.s?css$/, - use: [ - MiniCssExtractPlugin.loader, - { - loader: 'css-loader', - options: { - importLoaders: 2, - }, - }, - { - loader: 'postcss-loader', - options: { - ident: 'postcss', - plugins: loader => [ - require('postcss-preset-env')(), - require('cssnano')(), - ], - }, - }, - 'sass-loader', - ], - }, - ], - }, -}; -- cgit v1.2.3