diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2022-06-15 17:51:47 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-15 17:51:47 +1000 |
| commit | b2c60ef898f2d94c3f6122b5376135e02866d7bc (patch) | |
| tree | 61a3d6b03af0f0923477508210cc79927c00fbaa /docs/babel.config.js | |
| parent | c020697caaef64ed99c7921ac3729f69361ca7d5 (diff) | |
feat: major documentation refresh (#3475)
This marks the launch of the new documentation website.
Diffstat (limited to 'docs/babel.config.js')
| -rw-r--r-- | docs/babel.config.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/babel.config.js b/docs/babel.config.js new file mode 100644 index 000000000..ce9c9de02 --- /dev/null +++ b/docs/babel.config.js @@ -0,0 +1,17 @@ +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' + ] + } + } + ] + ] +};
\ No newline at end of file |
