mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
b2c60ef898
This marks the launch of the new documentation website.
17 lines
304 B
JavaScript
17 lines
304 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'
|
|
]
|
|
}
|
|
}
|
|
]
|
|
]
|
|
}; |