https://github.com/twbs/bootstrap
Revision 9c4abcc6a142851dbb6e7ce9fcfdc267b7adb82f authored by Mark Otto on 19 January 2021, 05:22:27 UTC, committed by GitHub on 19 January 2021, 05:22:27 UTC
Mention CSP and embedded SVGs in v4 docs
1 parent d2477ab
Raw File
Tip revision: 9c4abcc6a142851dbb6e7ce9fcfdc267b7adb82f authored by Mark Otto on 19 January 2021, 05:22:27 UTC
Backport #32759 (#32832)
Tip revision: 9c4abcc
.babelrc.js
module.exports = {
  presets: [
    [
      '@babel/preset-env',
      {
        loose: true,
        bugfixes: true,
        modules: false
      }
    ]
  ],
  env: {
    test: {
      plugins: [ 'istanbul' ]
    }
  }
};
back to top