forked from EasyCorp/EasyAdminBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
63 lines (55 loc) · 2.15 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
63
var Encore = require('@symfony/webpack-encore');
const WebpackRTLPlugin = require('@automattic/webpack-rtl-plugin');
Encore
.setOutputPath('./src/Resources/public/')
.setPublicPath('')
.setManifestKeyPrefix('')
.cleanupOutputBeforeBuild()
.enableSassLoader()
.enableSourceMaps(false)
.enableVersioning(true)
.disableSingleRuntimeChunk()
// copy FontAwesome fonts
.copyFiles({
from: './node_modules/@fortawesome/fontawesome-free/webfonts/',
// relative to the output dir
to: 'fonts/[name].[hash].[ext]'
})
// copy flag images for country type
.copyFiles({
from: './node_modules/country-flag-icons/3x2/',
to: 'images/flags/[path][name].[ext]',
pattern: /\.svg$/
})
// this is needed for special 'flags' such as UNKNOWN.svg (which is used for missing flags)
.copyFiles({
from: './assets/images/flags/',
to: 'images/flags/[path][name].[ext]',
})
.addPlugin(new WebpackRTLPlugin())
.configureCssMinimizerPlugin((options) => {
options.minimizerOptions = {
preset: [
'default',
{
// disabled to fix these issues: https://github.com/EasyCorp/EasyAdminBundle/pull/5171
svgo: false,
},
]
};
})
.addEntry('app', './assets/js/app.js')
.addEntry('form', './assets/js/form.js')
.addEntry('page-layout', './assets/js/page-layout.js')
.addEntry('page-color-scheme', './assets/js/page-color-scheme.js')
.addEntry('field-boolean', './assets/js/field-boolean.js')
.addEntry('field-code-editor', './assets/js/field-code-editor.js')
.addEntry('field-collection', './assets/js/field-collection.js')
.addEntry('field-file-upload', './assets/js/field-file-upload.js')
.addEntry('field-image', './assets/js/field-image.js')
.addEntry('field-slug', './assets/js/field-slug.js')
.addEntry('field-textarea', './assets/js/field-textarea.js')
.addEntry('field-text-editor', './assets/js/field-text-editor.js')
.addEntry('login', './assets/js/login.js')
;
module.exports = Encore.getWebpackConfig();