@frontman-ai/astro 0.1.5 → 0.1.7
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/dist/index.js +451 -367
- package/dist/integration.js +447 -366
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -42,10 +42,16 @@ export interface FrontmanConfig {
|
|
|
42
42
|
/**
|
|
43
43
|
* URL to the Frontman client bundle. Override for custom client builds.
|
|
44
44
|
* Must include a `host` query parameter.
|
|
45
|
-
* @default
|
|
45
|
+
* @default "https://app.frontman.sh/frontman.es.js" in production, dev server URL in development
|
|
46
46
|
*/
|
|
47
47
|
clientUrl?: string;
|
|
48
48
|
|
|
49
|
+
/**
|
|
50
|
+
* URL to the Frontman client CSS stylesheet.
|
|
51
|
+
* @default "https://app.frontman.sh/frontman.css" in production, omitted in development
|
|
52
|
+
*/
|
|
53
|
+
clientCssUrl?: string;
|
|
54
|
+
|
|
49
55
|
/**
|
|
50
56
|
* Use a light theme for the Frontman UI.
|
|
51
57
|
* @default false
|