-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
71 lines (60 loc) · 1.94 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
64
65
66
67
68
69
70
71
// This project uses "Yarn" package manager for managing JavaScript dependencies along
// with "Webpack Encore" library that helps working with the CSS and JavaScript files
// that are stored in the "assets/" directory.
//
// Read https://symfony.com/doc/current/frontend.html to learn more about how
// to manage CSS and JavaScript files in Symfony applications.
var Encore = require('@symfony/webpack-encore');
const CopyWebpackPlugin = require('copy-webpack-plugin');
Encore
.setOutputPath('public/build/')
.setPublicPath('/build')
.cleanupOutputBeforeBuild()
// when versioning is enabled, each filename will include a hash that changes
// whenever the contents of that file change. This allows you to use aggressive
// caching strategies. Use Encore.isProduction() to enable it only for production.
.enableVersioning(false)
.addEntry('app', './assets/js/app.js')
.addEntry('resume', './assets/js/resume.js')
.addEntry('blog', './assets/js/blog.js')
.addEntry('admin', './assets/js/admin/admin.js')
.addPlugin(new CopyWebpackPlugin(
{
patterns: [
{
from: 'assets/images',
to: 'images',
toType: 'dir',
globOptions: {
ignore: [".DS_Store"],
}
}
]
},
))
//.splitEntryChunks()
.enableSingleRuntimeChunk()
//.enableSourceMaps(!Encore.isProduction())
.enableVersioning(Encore.isProduction())
//.enableIntegrityHashes(Encore.isProduction())
//.configureBabel(null, {
// useBuiltIns: 'usage',
// corejs: 3,
//})
;
Encore.enableSassLoader(function (options) {
}, {
resolveUrlLoader: false
});
Encore.enablePostCssLoader(function (options) {
options.config = {
path: 'config/postcss.config.js'
}
});
const config = Encore.getWebpackConfig();
config.watch = !Encore.isProduction();
config.watchOptions = {
ignored: ['node_modules'],
poll: 500 // Check for changes every 500ms
};
module.exports = config;