forked from EasyCorp/EasyAdminBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
39 lines (32 loc) · 1.24 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
var Encore = require('@symfony/webpack-encore');
const WebpackRTLPlugin = require('webpack-rtl-plugin');
Encore
.setOutputPath('./src/Resources/public/')
.setPublicPath('./')
.setManifestKeyPrefix('bundles/easyadmin')
.cleanupOutputBeforeBuild()
.enableSassLoader()
.enableSourceMaps(false)
.enableVersioning(false)
.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: './assets/images/flags/',
to: 'images/flags/[path][name].[ext]',
pattern: /\.png$/
})
.addPlugin(new WebpackRTLPlugin())
.addEntry('app', './assets/js/app.js')
.addEntry('form-type-code-editor', './assets/js/form-type-code-editor.js')
.addEntry('form-type-text-editor', './assets/js/form-type-text-editor.js')
.addEntry('form-type-collection', './assets/js/form-type-collection.js')
.addEntry('form-type-slug', './assets/js/form-type-slug.js')
.addEntry('form-type-textarea', './assets/js/form-type-textarea.js')
;
module.exports = Encore.getWebpackConfig();