@mandujs/core 0.9.45 → 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 +1 -1
- package/src/runtime/server.ts +2 -2
package/package.json
CHANGED
package/src/runtime/server.ts
CHANGED
|
@@ -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:
|
|
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:
|
|
209
|
+
* - undefined: false로 처리 (404 방지)
|
|
210
210
|
*/
|
|
211
211
|
cssPath?: string | false;
|
|
212
212
|
}
|