Skip to content

Instantly share code, notes, and snippets.

@s-barrah
Created June 29, 2020 21:15
Show Gist options
  • Save s-barrah/efe224d7a865df2d8359dc831366d523 to your computer and use it in GitHub Desktop.
Save s-barrah/efe224d7a865df2d8359dc831366d523 to your computer and use it in GitHub Desktop.
Babel configuration
module.exports = function (api) {
api.cache(true);
const presets = [['react-app', { absoluteRuntime: false }]];
const plugins = [['babel-plugin-styled-components']];
return {
presets,
plugins,
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment