-
Notifications
You must be signed in to change notification settings - Fork 55
/
webpack.config.mjs
69 lines (66 loc) · 2.05 KB
/
webpack.config.mjs
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
63
64
65
66
67
68
69
"use strict";
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import RemoveEmptyScriptsPlugin from 'webpack-remove-empty-scripts';
import TerserPlugin from 'terser-webpack-plugin';
import path from 'path';
import { fileURLToPath } from 'url';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
export default {
mode: 'production',
entry: {
'frontend': './Resources/Private/Scss/frontend/frontend.scss',
'backend': './Resources/Private/Scss/backend/backend.scss',
'pagelayout': './Resources/Private/Scss/backend/pagelayout.scss',
'datatables': './Resources/Private/JavaScript/backend/datatables.js',
'mass-update': './Resources/Private/JavaScript/backend/mass-update.js',
'setup-wizard': './Resources/Private/JavaScript/backend/setup-wizard.js',
},
target: 'es2020',
externals: {
"jquery": "jquery",
"bootstrap": "bootstrap",
"@typo3/backend/modal": "@typo3/backend/modal.js",
"@typo3/backend/severity": "@typo3/backend/severity.js"
},
experiments: {
outputModule: true
},
output: {
module: true,
filename: '[name].js',
path: path.resolve(__dirname, 'Resources/Public/JavaScript'),
},
optimization: {
minimizer: [
new TerserPlugin({}),
]
},
module: {
rules: [
{
test: /\.(css|scss)$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: "css-loader",
options: {}
},
{
loader: "postcss-loader",
options: {}
},
{
loader: "sass-loader",
options: {}
}
]
}
]
},
plugins: [
new RemoveEmptyScriptsPlugin(),
new MiniCssExtractPlugin({
filename: '../Css/[name].min.css',
})
]
};