Skip to content

Commit 9bbbf16

Browse files
docs: juno config hosting group (#698)
* docs: juno config hosting group Signed-off-by: David Dal Busco <david.dalbusco@outlook.com> * 📄 Update LLMs.txt snapshot for PR review --------- Signed-off-by: David Dal Busco <david.dalbusco@outlook.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4836f92 commit 9bbbf16

32 files changed

Lines changed: 240 additions & 146 deletions

.llms-snapshots/llms-full.txt

Lines changed: 61 additions & 61 deletions
Large diffs are not rendered by default.

docs/build/analytics/setup.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ export default defineConfig({
5959
ids: {
6060
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
6161
},
62-
source: "dist"
62+
hosting: {
63+
source: "dist"
64+
}
6365
},
6466
orbiter: {
6567
ids: {
@@ -240,7 +242,9 @@ export default defineConfig({
240242
ids: {
241243
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
242244
},
243-
source: "dist"
245+
hosting: {
246+
source: "dist"
247+
}
244248
},
245249
orbiter: {
246250
ids: {

docs/build/authentication/github.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ export default defineConfig({
7070
development: "<DEV_SATELLITE_ID>",
7171
production: "<PROD_SATELLITE_ID>"
7272
},
73-
source: "dist",
73+
hosting: {
74+
source: "dist"
75+
},
7476
authentication: {
7577
github: {
7678
clientId: "your-github-client-id"

docs/build/authentication/google.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ export default defineConfig({
7575
development: "<DEV_SATELLITE_ID>",
7676
production: "<PROD_SATELLITE_ID>"
7777
},
78-
source: "dist",
78+
hosting: {
79+
source: "dist"
80+
},
7981
authentication: {
8082
google: {
8183
clientId: "1234567890-abcde12345fghijklmno.apps.googleusercontent.com"

docs/build/components/assertions.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ export default defineConfig({
1010
ids: {
1111
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
1212
},
13-
source: "dist",
13+
hosting: {
14+
source: "dist"
15+
},
1416
assertions: {
1517
heapMemory: 678000000
1618
}
@@ -28,7 +30,9 @@ export default defineConfig({
2830
ids: {
2931
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
3032
},
31-
source: "dist",
33+
hosting: {
34+
source: "dist"
35+
},
3236
assertions: {
3337
heapMemory: false
3438
}

docs/build/components/encoding.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ export default defineConfig({
2222
ids: {
2323
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
2424
},
25-
source: "dist",
26-
encoding: [["**/releases/*.gz", "identity"]]
25+
hosting: {
26+
source: "dist",
27+
encoding: [["**/releases/*.gz", "identity"]]
28+
}
2729
}
2830
});
2931
```

docs/build/components/http-headers.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ export default defineConfig({
1212
ids: {
1313
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
1414
},
15-
source: "dist",
15+
hosting: {
16+
source: "dist"
17+
},
1618
storage: {
1719
headers: [
1820
{

docs/build/components/iframe.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ export default defineConfig({
1010
ids: {
1111
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
1212
},
13-
source: "dist",
13+
hosting: {
14+
source: "dist"
15+
},
1416
storage: {
1517
iframe: "same-origin"
1618
}

docs/build/components/ignore-files.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ export default defineConfig({
1212
ids: {
1313
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
1414
},
15-
source: "dist",
16-
ignore: ["**/*.txt", ".tmp/"]
15+
hosting: {
16+
source: "dist",
17+
ignore: ["**/*.txt", ".tmp/"]
18+
}
1719
}
1820
});
1921
```

docs/build/components/precompress.mdx

Lines changed: 34 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ export default defineConfig({
2222
ids: {
2323
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
2424
},
25-
source: "dist",
26-
precompress: false
25+
hosting: {
26+
source: "dist",
27+
precompress: false
28+
}
2729
}
2830
});
2931
```
@@ -40,9 +42,11 @@ export default defineConfig({
4042
ids: {
4143
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
4244
},
43-
source: "dist",
44-
precompress: {
45-
pattern: "**/*.jpg" // precompress JPEG files only
45+
hosting: {
46+
source: "dist",
47+
precompress: {
48+
pattern: "**/*.jpg" // precompress JPEG files only
49+
}
4650
}
4751
}
4852
});
@@ -71,9 +75,11 @@ export default defineConfig({
7175
ids: {
7276
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
7377
},
74-
source: "dist",
75-
precompress: {
76-
mode: "replace"
78+
hosting: {
79+
source: "dist",
80+
precompress: {
81+
mode: "replace"
82+
}
7783
}
7884
}
7985
});
@@ -93,9 +99,11 @@ export default defineConfig({
9399
ids: {
94100
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
95101
},
96-
source: "dist",
97-
precompress: {
98-
algorithm: "brotli"
102+
hosting: {
103+
source: "dist",
104+
precompress: {
105+
algorithm: "brotli"
106+
}
99107
}
100108
}
101109
});
@@ -121,19 +129,21 @@ export default defineConfig({
121129
ids: {
122130
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
123131
},
124-
source: "dist",
125-
precompress: [
126-
{
127-
pattern: "**/*.+(js|mjs|css)",
128-
algorithm: "brotli",
129-
mode: "replace"
130-
},
131-
{
132-
pattern: "**/*.html",
133-
algorithm: "brotli",
134-
mode: "both"
135-
}
136-
]
132+
hosting: {
133+
source: "dist",
134+
precompress: [
135+
{
136+
pattern: "**/*.+(js|mjs|css)",
137+
algorithm: "brotli",
138+
mode: "replace"
139+
},
140+
{
141+
pattern: "**/*.html",
142+
algorithm: "brotli",
143+
mode: "both"
144+
}
145+
]
146+
}
137147
}
138148
});
139149
```

0 commit comments

Comments
 (0)