-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.config.js
40 lines (35 loc) · 1.26 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
const Encore = require('@symfony/webpack-encore');
// List dependent sprinkles and local entries files
const sprinkles = {
AdminLTE: require('@userfrosting/theme-adminlte/webpack.entries'),
Admin: require('@userfrosting/sprinkle-admin/webpack.entries'),
App: require('./webpack.entries')
}
// Merge dependent Sprinkles entries with local entries
let entries = {}
Object.values(sprinkles).forEach(sprinkle => {
entries = Object.assign(entries, sprinkle);
});
// Manually configure the runtime environment if not already configured yet by the "encore" command.
// It's useful when you use tools that rely on webpack.config.js file.
if (!Encore.isRuntimeEnvironmentConfigured()) {
Encore.configureRuntimeEnvironment(process.env.UF_MODE || 'dev');
}
Encore
.setOutputPath('public/assets')
.setPublicPath('/assets/')
.addEntries(entries)
.splitEntryChunks()
.enableSingleRuntimeChunk()
.cleanupOutputBeforeBuild()
.enableBuildNotifications()
.enableSourceMaps(!Encore.isProduction())
.enableVersioning(Encore.isProduction())
.configureBabelPresetEnv((config) => {
config.useBuiltIns = 'usage';
config.corejs = 3;
})
.enableSassLoader()
.autoProvidejQuery()
;
module.exports = Encore.getWebpackConfig();