We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d87f53b commit e8b4f06Copy full SHA for e8b4f06
symfony/webpack-encore-bundle/1.0/package.json
@@ -1,6 +1,7 @@
1
{
2
"devDependencies": {
3
- "@symfony/webpack-encore": "^0.22.0",
+ "@symfony/webpack-encore": "^0.26.0",
4
+ "core-js": "^3.0.0",
5
"webpack-notifier": "^1.6.0"
6
},
7
"license": "UNLICENSED",
symfony/webpack-encore-bundle/1.0/webpack.config.js
@@ -41,6 +41,12 @@ Encore
41
// enables hashed filenames (e.g. app.abc123.css)
42
.enableVersioning(Encore.isProduction())
43
44
+ // enables @babel/preset-env polyfills
45
+ .configureBabel(() => {}, {
46
+ useBuiltIns: 'usage',
47
+ corejs: 3
48
+ })
49
+
50
// enables Sass/SCSS support
51
//.enableSassLoader()
52
0 commit comments