styled-normalize icon indicating copy to clipboard operation
styled-normalize copied to clipboard

.babelrc use wrong presets

Open michelworks opened this issue 6 years ago • 0 comments

in the .babelrc triggers a error { "presets": [ ["@babel/env", { "modules": "commonjs" }] ], "plugins": [ "styled-components" ] } @babel/env doesn't exist this should be @babel/preset-env { "presets": [ ["@babel/preset-env", { "modules": "commonjs" }] ], "plugins": [ "styled-components" ] }

michelworks avatar Dec 19 '19 15:12 michelworks