You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
985 B
JavaScript
42 lines
985 B
JavaScript
const path = require('path');
|
|
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
const sass = require('sass'); // Prefer `dart-sass`
|
|
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
|
|
module.exports = {
|
|
output: {
|
|
path: path.resolve(__dirname, 'stylesheets', 'dist'),
|
|
},
|
|
entry: './stylesheets/manifest.scss',
|
|
mode: 'production',
|
|
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.s[ac]ss$/i,
|
|
use: [
|
|
// Creates `main.css` compiling all of the compiled css files
|
|
MiniCssExtractPlugin.loader,
|
|
// Translates CSS into CommonJS
|
|
'css-loader',
|
|
// Compiles Sass to CSS
|
|
{
|
|
loader: 'sass-loader',
|
|
options: {
|
|
implementation: sass,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
plugins: [].concat(
|
|
new MiniCssExtractPlugin({
|
|
filename: 'manifest.css',
|
|
})
|
|
),
|
|
};
|