v0.12.14
Fixes CSS rendering issues in projects initialized between v0.12.1 and v0.12.14, possibly earlier. To address, you need to manually update CSS files to the following, or copy your resources over to a new project initialized with sunpeak CLI >= 0.12.14.
Delete src/styles/app.css if present.
src/styles/globals.css should contain only:
/* Base styles: Tailwind CSS + OpenAI Apps SDK UI */
@import "sunpeak/chatgpt/globals.css";
/* Scan app-specific source files for Tailwind classes */
@source "../**/*.{ts,tsx}";
/* Required for Tailwind to find class references in sunpeak simulator and SDK UI components. */
@source "../../node_modules/sunpeak";
@source "../../node_modules/@openai/apps-sdk-ui";
/* Add your custom styles below */
Full Changelog: v0.12.13...v0.12.14