swc_plugin_styled_components 0.26.0

styled-components plugin for https://swc.rs
docs.rs failed to build swc_plugin_styled_components-0.26.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: swc_plugin_styled_components-0.34.2

@swc/plugin-styled-components

Setup

npm install --save-dev @swc/plugin-styled-components @swc/core@1.2.215

@swc/core@1.2.215 is required for now

Then update your .swcrc file like below:

{
  "jsc": {
    "experimental": {
      "plugins": [
        [
          "@swc/plugin-styled-components",
          {
            "displayName": true,
            "ssr": true
          }
        ]
      ]
    }
  }
}