-
Notifications
You must be signed in to change notification settings - Fork 19
/
webpack.config.js
29 lines (25 loc) · 919 Bytes
/
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
var Encore = require('@symfony/webpack-encore');
if (!Encore.isRuntimeEnvironmentConfigured()) {
Encore.configureRuntimeEnvironment(process.env.NODE_ENV || 'dev');
}
Encore
.setOutputPath('public/build/')
.setPublicPath('/build')
.addStyleEntry('lib', './assets/scss/lib.scss')
.addStyleEntry('app', './assets/scss/app.scss')
.addEntry('request', './assets/jsx/request.jsx')
.addEntry('request-vulnerable', './assets/jsx/request-vulnerable.jsx')
.addEntry('helper', './assets/jsx/helper.jsx')
.splitEntryChunks()
.enableSingleRuntimeChunk()
.cleanupOutputBeforeBuild()
.enableSourceMaps(!Encore.isProduction())
.enableVersioning(Encore.isProduction())
.configureBabelPresetEnv((config) => {
config.useBuiltIns = 'usage';
config.corejs = 3;
})
.enableSassLoader()
.enablePreactPreset()
;
module.exports = Encore.getWebpackConfig();