We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
string[]
1 parent b20a325 commit f29f8f4Copy full SHA for f29f8f4
packages/tailwindcss/src/compat/apply-config-to-theme.ts
@@ -153,7 +153,7 @@ export function keyPathToCssProperty(path: string[]) {
153
// The legacy container component config should not be included in the Theme
154
if (path[0] === 'container') return null
155
156
- path = structuredClone(path)
+ path = path.slice()
157
158
if (path[0] === 'animation') path[0] = 'animate'
159
if (path[0] === 'aspectRatio') path[0] = 'aspect'
0 commit comments