Files
twenty/packages/twenty-ui/src/emotion.d.ts
T
Charles Bochet b55a48139c Remove hoisting on server (#13821)
Testing a different approach to fix broken buildPackageJson on server
build

How i have tested:

A. Local contributor setup
- run yarn
- build server
- run yarn workspace focus
- run server on dist

B. self-host
- docker build

Note: I think the dependencies I have added are suboptimized as the
image went from 2GB to 3.5GB. We might need to be more accurate
2025-08-11 15:58:05 +02:00

6 lines
125 B
TypeScript

import { type ThemeType } from './theme';
declare module '@emotion/react' {
export interface Theme extends ThemeType {}
}