React:Vite + Styled Components中使用『babel-plugin-styled-components』插件
安装
yarn add -D babel-plugin-styled-components;
配置:在vite.config.ts
中配置plugin:
plugins: [
react({
babel: {
plugins: [
[
'babel-plugin-styled-components',
{
displayName: true,
fileName: false
}
]
]
},
}),
]