-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
45 lines (43 loc) · 978 Bytes
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/** _ _ _
* __| (_)___ __ _ _ ___ | |_ ___
* / _` | (_-</ _| '_/ -_)| _/ _ \
* \__,_|_/__/\__|_| \___(_)__\___/
*
* Copyright © 2020 - MIT License
* Greg Deback <greg@discre.to>
* <https://discre.to>
*
* Webpack config
*
* @see https://github.com/webpack-contrib/sass-loader
* @see https://github.com/webpack-contrib/mini-css-extract-plugin
*/
const
path = require('path'),
css = require('mini-css-extract-plugin')
module.exports = {
mode: 'production',
entry: [
'./src/discreto.js',
'./src/discreto.scss'
],
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'discreto.min.js'
},
plugins: [ new css({
filename: 'discreto.min.css'
}) ],
module: {
rules: [
{
test: /\.scss$/,
use: [ css.loader, 'css-loader', 'sass-loader' ]
},
{
test: /\.(jpe?g|png|ttf|eot|svg|woff(2)?)(\?[a-z0-9=&.]+)?$/,
type: 'asset/inline'
}
]
}
}