-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
73 lines (50 loc) · 1.89 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
72
73
// webpack.config.js
//source to reference : https://github.com/symfony/webpack-encore/issues/188
var Encore = require('@symfony/webpack-encore');
var glob = require("glob");
const path = require('path');
const globToEntry = (base, pattern) => {
return glob.sync(path.join(base, pattern)).reduce((entry, file) => {
const parsedPath = path.parse(path.relative(base, file));
entry[path.join(parsedPath.dir, parsedPath.name)] = './'+file;
return entry;
}, {});
};
//console.log(globToEntry('./assets/js/','*.js'))
var obj = globToEntry('./assets/js/','*.js');
//return;
var glob_entries = require('webpack-glob-entries');
var mainScript = './assets/js/';
//var mainStyle = './assets/sass/';
Encore
// the project directory where all compiled assets will be stored
.setOutputPath('public/build/')
// the public path used by the web server to access the previous directory
.setPublicPath('/build');
Object.keys(obj).forEach(function(key) {
Encore.addEntry(key, obj[key]);
// console.log(key, obj[key]);
});
//.addEntry('main', mainScript + 'main.js')
//.addEntry(globToEntry('./assets/js/','*.js'))
// allow sass/scss files to be processed
Encore.enableSassLoader(function(sassOptions) {}, {
resolveUrlLoader: false
})
// allow legacy applications to use $/jQuery as a global variable
.autoProvidejQuery()
.enableSourceMaps(!Encore.isProduction())
// empty the outputPath dir before each build
.cleanupOutputBeforeBuild()
// seperate subfolder
.configureFilenames({
css: 'css/[name].css',
js: 'js/[name].js'
})
// show OS notifications when builds finish/fail
.enableBuildNotifications()
// create hashed filenames (e.g. app.abc123.css)
// .enableVersioning()
;
// export the final configuration
module.exports = Encore.getWebpackConfig();