forked from spicywebau/craft-neo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
62 lines (61 loc) · 1.49 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const path = require('path')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const TerserPlugin = require('terser-webpack-plugin')
module.exports = {
entry: {
main: path.resolve(__dirname, 'src/assets/src/main.js'),
configurator: path.resolve(__dirname, 'src/assets/src/configurator.js'),
converter: path.resolve(__dirname, 'src/assets/src/converter.js')
},
output: {
path: path.resolve(__dirname, 'src/assets/dist/'),
filename: 'neo-[name].js'
},
externals: {
jquery: 'jQuery',
craft: 'Craft',
garnish: 'Garnish'
},
optimization: {
minimize: true,
minimizer: [new TerserPlugin()]
},
module: {
rules: [
{
use: [MiniCssExtractPlugin.loader, 'css-loader'],
test: /\.css$/
},
{
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
test: /\.scss$/
},
{
use: {
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env',
{
targets: {
firefox: '67',
chrome: '63',
safari: '11',
edge: '79'
}
}
]
]
}
},
include: [path.resolve(__dirname, 'src/assets/src')],
test: /\.jsx?$/
}
]
},
devtool: 'source-map',
plugins: [new MiniCssExtractPlugin({
filename: 'neo-[name].css'
})]
}