From c80453e9316c1e44bdaf6e30e8dff818dcdeffd7 Mon Sep 17 00:00:00 2001 From: s-r-x Date: Thu, 13 Nov 2025 12:04:49 +0500 Subject: [PATCH] fix: rename "cssProps" option to "cssProp" --- README.md | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8d03369..5eef171 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ type StyledComponentsOptions = { transpileTemplateLiterals?: boolean; minify?: boolean; pure?: boolean; - cssProps?: boolean; + cssProp?: boolean; }; ``` diff --git a/src/index.ts b/src/index.ts index 069d274..e51d143 100644 --- a/src/index.ts +++ b/src/index.ts @@ -22,7 +22,7 @@ export type PluginStyledComponentsOptions = { transpileTemplateLiterals?: boolean; minify?: boolean; pure?: boolean; - cssProps?: boolean; + cssProp?: boolean; }; function isServerTarget(target: RsbuildTarget[]) {