Raw File
babel.config.js
module.exports = {
  plugins: [
    [
      '@babel/plugin-proposal-decorators',
      {
        legacy: true,
      },
    ],
    ['babel-plugin-styled-components'],
  ],
};
back to top