@mandujs/core 0.9.44 → 0.9.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mandujs/core",
3
- "version": "0.9.44",
3
+ "version": "0.9.46",
4
4
  "description": "Mandu Framework Core - Spec, Generator, Guard, Runtime",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -110,7 +110,7 @@ export interface ServerOptions {
110
110
  * CSS 파일 경로 (SSR 링크 주입용)
111
111
  * - string: 해당 경로로 <link> 주입 (예: "/.mandu/client/globals.css")
112
112
  * - false: CSS 링크 주입 비활성화 (Tailwind 미사용 시)
113
- * - undefined: 자동 감지 (.mandu/client/globals.css 존재 주입)
113
+ * - undefined: false로 처리 (404 방지, dev/build에서 명시적 전달 필요)
114
114
  */
115
115
  cssPath?: string | false;
116
116
  /**
@@ -206,7 +206,7 @@ export interface ServerRegistrySettings {
206
206
  * CSS 파일 경로 (SSR 링크 주입용)
207
207
  * - string: 해당 경로로 <link> 주입
208
208
  * - false: CSS 링크 주입 비활성화
209
- * - undefined: 자동 감지 (.mandu/client/globals.css 존재 시 주입)
209
+ * - undefined: false로 처리 (404 방지)
210
210
  */
211
211
  cssPath?: string | false;
212
212
  }