kb-one-de/config/babel.config.js
kB01 41a89ae883
Some checks failed
CI / build (push) Failing after 0s
Switched to Doks Theme (not building)
2025-04-24 18:32:17 +02:00

17 lines
436 B
JavaScript

module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
browsers: [
// Best practice: https://github.com/babel/babel/issues/7789
'>=1%',
'not ie 11',
'not op_mini all'
]
}
}
]
]
};