rsnext/test/integration/babel-custom/fixtures/targets-browsers/.babelrc
Jason Miller fa5be4971a Bugfix: Babel targets value can be a String (#8268)
* Fix modern SSR build when Babel configuration uses a String value for "targets". Fixes #8255.

* Add custom babelrc integration tests
2019-08-08 15:38:51 +02:00

14 lines
No EOL
175 B
Text

{
"presets": [
[
"next/babel",
{
"preset-env": {
"targets": {
"browsers": "chrome>71"
}
}
}
]
]
}