123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- var Encore = require('@symfony/webpack-encore');
- Encore
-
- .setOutputPath('public/build/')
-
- .setPublicPath('/build')
-
-
-
- .addEntry('app', './assets/js/app.js')
-
-
-
-
- .splitEntryChunks()
-
-
- .enableSingleRuntimeChunk()
-
- .cleanupOutputBeforeBuild()
- .enableBuildNotifications()
- .enableSourceMaps(!Encore.isProduction())
-
- .enableVersioning(Encore.isProduction())
-
- .configureBabel(() => {}, {
- useBuiltIns: 'usage',
- corejs: 3
- })
-
- .enableSassLoader()
-
-
-
-
-
-
- .autoProvidejQuery()
-
-
-
- ;
- module.exports = Encore.getWebpackConfig();
|