b55a48139c
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
6 lines
125 B
TypeScript
6 lines
125 B
TypeScript
import { type ThemeType } from './theme';
|
|
|
|
declare module '@emotion/react' {
|
|
export interface Theme extends ThemeType {}
|
|
}
|