2019-06-03 01:43:49 +02:00
|
|
|
// Hint: if something doesn't work as expected: yarn upgrade --latest
|
|
|
|
|
2018-02-01 22:26:19 +01:00
|
|
|
var Encore = require('@symfony/webpack-encore');
|
2019-04-29 01:48:27 +02:00
|
|
|
var webpack = require('webpack');
|
2018-02-01 22:26:19 +01:00
|
|
|
|
|
|
|
Encore
|
|
|
|
.setOutputPath('public/build/')
|
2019-06-03 01:43:49 +02:00
|
|
|
.setPublicPath('build/')
|
2019-03-12 01:02:42 +01:00
|
|
|
.setManifestKeyPrefix('build/')
|
2018-02-01 22:26:19 +01:00
|
|
|
.cleanupOutputBeforeBuild()
|
|
|
|
|
2019-06-03 01:43:49 +02:00
|
|
|
.addEntry('app', './assets/app.js')
|
2020-03-06 03:21:39 +01:00
|
|
|
.addEntry('invoice', './assets/invoice.js')
|
2020-05-10 16:19:59 +02:00
|
|
|
.addEntry('invoice-pdf', './assets/invoice-pdf.js')
|
2019-06-03 01:43:49 +02:00
|
|
|
.addEntry('chart', './assets/chart.js')
|
|
|
|
.addEntry('calendar', './assets/calendar.js')
|
|
|
|
.copyFiles({ from: './assets/images', to: 'images/[path][name].[ext]' })
|
2018-02-01 22:26:19 +01:00
|
|
|
|
2019-06-03 01:43:49 +02:00
|
|
|
.splitEntryChunks()
|
2021-04-29 18:29:03 +02:00
|
|
|
.configureSplitChunks(function(splitChunks) {
|
|
|
|
splitChunks.chunks = 'async';
|
|
|
|
})
|
|
|
|
|
|
|
|
// bug: empty hashes in entrypoints.json
|
|
|
|
//.enableIntegrityHashes(Encore.isProduction())
|
|
|
|
|
2019-06-03 01:43:49 +02:00
|
|
|
.enableSingleRuntimeChunk()
|
2018-02-01 22:26:19 +01:00
|
|
|
.enableVersioning(Encore.isProduction())
|
2019-06-03 01:43:49 +02:00
|
|
|
.enableSourceMaps(!Encore.isProduction())
|
2018-02-01 22:26:19 +01:00
|
|
|
.enableBuildNotifications()
|
|
|
|
|
2021-04-29 18:29:03 +02:00
|
|
|
.enableSassLoader(function(sassOptions) {}, {
|
|
|
|
resolveUrlLoader: false
|
|
|
|
})
|
|
|
|
|
|
|
|
// to rewrite the font url() in CSS to be relative.
|
|
|
|
// https://github.com/symfony/webpack-encore/issues/915#issuecomment-827556896
|
|
|
|
.configureFontRule(
|
|
|
|
{ type: 'javascript/auto' },
|
|
|
|
(rule) => {
|
|
|
|
rule.loader = 'file-loader';
|
|
|
|
rule.options = { outputPath: 'fonts', name: '[name].[hash:8].[ext]', publicPath: './fonts/' };
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
.configureImageRule(
|
|
|
|
{ type: 'javascript/auto' },
|
|
|
|
(rule) => {
|
|
|
|
rule.loader = 'file-loader';
|
|
|
|
rule.options = { outputPath: 'images', name: '[name].[hash:8].[ext]', publicPath: './images/' };
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2018-02-01 22:26:19 +01:00
|
|
|
.autoProvidejQuery()
|
|
|
|
|
2020-05-10 16:19:59 +02:00
|
|
|
// prevent that unused moment locales will be included
|
2019-06-03 01:43:49 +02:00
|
|
|
.addPlugin(new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/))
|
|
|
|
|
|
|
|
.configureBabel(null, {
|
|
|
|
useBuiltIns: 'usage',
|
|
|
|
corejs: 3,
|
2018-02-01 22:26:19 +01:00
|
|
|
})
|
2018-02-03 17:52:26 +01:00
|
|
|
|
2021-04-29 18:29:03 +02:00
|
|
|
.configureCssMinimizerPlugin((options) => {
|
|
|
|
options.minimizerOptions = {
|
2019-06-03 01:43:49 +02:00
|
|
|
preset: ['default', { discardComments: { removeAll: true } }],
|
|
|
|
}
|
|
|
|
})
|
2018-02-01 22:26:19 +01:00
|
|
|
;
|
|
|
|
|
2021-04-29 18:29:03 +02:00
|
|
|
module.exports = Encore.getWebpackConfig();
|