Skip to content

Commit d9c92d5

Browse files
committed
chore: enable compiler
1 parent 66ab821 commit d9c92d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/css-in-js/next-15/next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { NextConfig } from 'next';
22

33
const config: NextConfig = {
4-
// compiler: { styledComponents: true },
4+
compiler: { styledComponents: true },
55
env: { SC_DISABLE_SPEEDY: 'false' },
66
};
77

examples/styled-components/next-app-router/src/app/registry.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use client';
22

3-
import { useCallback, useState, useSyncExternalStore } from 'react';
3+
import { useState } from 'react';
44
import { useServerInsertedHTML } from 'next/navigation';
55
import { ServerStyleSheet, StyleSheetManager } from 'styled-components';
66

0 commit comments

Comments
 (0)