• Почему не работают полифилы для IE в продакшене?

    @Serega063 Автор вопроса
    Антон Спирин, Спасибо Антон! Хорошо заданный вопрос содержит правильный ответ.
    Не буду утомлять конфигами, проблема кажется решилась в конфиге webpack для production, а именно
    понизил уровень ecma с 6 на 5.
    new TerserPlugin({
            cache: true,
            parallel: true,
            // sourceMap: true, // Enable source maps. Please note that this will slow down the build
            terserOptions: {
              ecma: 5,
              toplevel: true,
              module: true,
              beautify: false,
              comments: false,
              compress: {
                warnings: false,
                ecma: 5,
                module: true,
                toplevel: true
              },
              output: {
                  comments: false,
                  beautify: false,
                  indent_level: 2,
                  ecma: 5
              },
              mangle: {
                keep_fnames: true,
                module: true,
                toplevel: true
              }
            }
          }),

    Вопрос чем чреваты последствия?