babel-plugin-styled-components
babel-plugin-styled-components copied to clipboard
namespace option doesn't work with babel-plugin-macros
I'm trying to setup a namespace
for my styled-components application (create-react-app) with Babel Macro.
I created a file:
// babel-plugin-macros.config.js
module.exports = {
styledComponents: {
fileName: true,
displayName: true,
namespace: "my-namespace"
}
}
Everything but "namespace" works.
What could be the reason?
Same for me, anthing on that?