Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 411 Bytes

README.tmpl.md

File metadata and controls

29 lines (24 loc) · 411 Bytes

@swc/plugin-styled-components

Setup

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

Then update your .swcrc file like below:

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

${CHANGELOG}