Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 61 additions & 61 deletions .llms-snapshots/llms-full.txt

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions docs/build/analytics/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist"
hosting: {
source: "dist"
}
},
orbiter: {
ids: {
Expand Down Expand Up @@ -240,7 +242,9 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist"
hosting: {
source: "dist"
}
},
orbiter: {
ids: {
Expand Down
4 changes: 3 additions & 1 deletion docs/build/authentication/github.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "dist",
hosting: {
source: "dist"
},
authentication: {
github: {
clientId: "your-github-client-id"
Expand Down
4 changes: 3 additions & 1 deletion docs/build/authentication/google.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "dist",
hosting: {
source: "dist"
},
authentication: {
google: {
clientId: "1234567890-abcde12345fghijklmno.apps.googleusercontent.com"
Expand Down
8 changes: 6 additions & 2 deletions docs/build/components/assertions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
hosting: {
source: "dist"
},
assertions: {
heapMemory: 678000000
}
Expand All @@ -28,7 +30,9 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
hosting: {
source: "dist"
},
assertions: {
heapMemory: false
}
Expand Down
6 changes: 4 additions & 2 deletions docs/build/components/encoding.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
encoding: [["**/releases/*.gz", "identity"]]
hosting: {
source: "dist",
encoding: [["**/releases/*.gz", "identity"]]
}
}
});
```
4 changes: 3 additions & 1 deletion docs/build/components/http-headers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
hosting: {
source: "dist"
},
storage: {
headers: [
{
Expand Down
4 changes: 3 additions & 1 deletion docs/build/components/iframe.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
hosting: {
source: "dist"
},
storage: {
iframe: "same-origin"
}
Expand Down
6 changes: 4 additions & 2 deletions docs/build/components/ignore-files.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
ignore: ["**/*.txt", ".tmp/"]
hosting: {
source: "dist",
ignore: ["**/*.txt", ".tmp/"]
}
}
});
```
58 changes: 34 additions & 24 deletions docs/build/components/precompress.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
precompress: false
hosting: {
source: "dist",
precompress: false
}
}
});
```
Expand All @@ -40,9 +42,11 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
precompress: {
pattern: "**/*.jpg" // precompress JPEG files only
hosting: {
source: "dist",
precompress: {
pattern: "**/*.jpg" // precompress JPEG files only
}
}
}
});
Expand Down Expand Up @@ -71,9 +75,11 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
precompress: {
mode: "replace"
hosting: {
source: "dist",
precompress: {
mode: "replace"
}
}
}
});
Expand All @@ -93,9 +99,11 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
precompress: {
algorithm: "brotli"
hosting: {
source: "dist",
precompress: {
algorithm: "brotli"
}
}
}
});
Expand All @@ -121,19 +129,21 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
precompress: [
{
pattern: "**/*.+(js|mjs|css)",
algorithm: "brotli",
mode: "replace"
},
{
pattern: "**/*.html",
algorithm: "brotli",
mode: "both"
}
]
hosting: {
source: "dist",
precompress: [
{
pattern: "**/*.+(js|mjs|css)",
algorithm: "brotli",
mode: "replace"
},
{
pattern: "**/*.html",
algorithm: "brotli",
mode: "both"
}
]
}
}
});
```
4 changes: 3 additions & 1 deletion docs/build/components/redirects.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
hosting: {
source: "dist"
},
storage: {
redirects: [
{
Expand Down
4 changes: 3 additions & 1 deletion docs/build/components/rewrites.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist",
hosting: {
source: "dist"
},
storage: {
rewrites: [
{
Expand Down
4 changes: 3 additions & 1 deletion docs/build/components/source.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai"
},
source: "dist"
hosting: {
source: "dist"
}
}
});
```
6 changes: 4 additions & 2 deletions docs/guides/angular/build.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "out",
predeploy: ["npm run build"]
hosting: {
source: "out",
predeploy: ["npm run build"]
}
}
});
```
Expand Down
6 changes: 4 additions & 2 deletions docs/guides/angular/deploy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "dist/<application-name>/browser",
predeploy: ["npm run build"]
hosting: {
source: "dist/<application-name>/browser",
predeploy: ["npm run build"]
}
}
});
```
Expand Down
6 changes: 4 additions & 2 deletions docs/guides/astro/build.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "dist",
predeploy: ["npm run build"]
hosting: {
source: "dist",
predeploy: ["npm run build"]
}
}
});
```
Expand Down
6 changes: 4 additions & 2 deletions docs/guides/astro/deploy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "dist",
predeploy: ["npm run build"]
hosting: {
source: "dist",
predeploy: ["npm run build"]
}
}
});
```
Expand Down
6 changes: 4 additions & 2 deletions docs/guides/docusaurus/deploy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "build",
predeploy: ["npm run build"]
hosting: {
source: "build",
predeploy: ["npm run build"]
}
}
});
```
Expand Down
4 changes: 3 additions & 1 deletion docs/guides/e2e.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ export default defineConfig({
development: "jx5yt-yyaaa-aaaal-abzbq-cai",
production: "<PROD_SATELLITE_ID>"
},
source: "out",
hosting: {
source: "out"
},
collections: {
datastore: [
{
Expand Down
6 changes: 4 additions & 2 deletions docs/guides/github-actions/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ export default defineConfig({
ids: {
production: "qsgjb-riaaa-aaaaa-aaaga-cai" // Replace with your satellite ID
},
source: "dist", // Replace with your build output directory
predeploy: ["npm run build"] // Adjust based on your package manager
hosting: {
source: "dist", // Replace with your build output directory
predeploy: ["npm run build"] // Adjust based on your package manager
}
}
});
```
Expand Down
6 changes: 4 additions & 2 deletions docs/guides/nextjs/build.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "out",
predeploy: ["npm run build"]
hosting: {
source: "out",
predeploy: ["npm run build"]
}
}
});
```
Expand Down
6 changes: 4 additions & 2 deletions docs/guides/nextjs/deploy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,10 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "out",
predeploy: ["npm run build"]
hosting: {
source: "out",
predeploy: ["npm run build"]
}
}
});
```
Expand Down
6 changes: 4 additions & 2 deletions docs/guides/react/deploy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "dist",
predeploy: ["npm run build"]
hosting: {
source: "dist",
predeploy: ["npm run build"]
}
}
});
```
Expand Down
6 changes: 4 additions & 2 deletions docs/guides/sveltekit/build.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,10 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "build",
predeploy: ["npm run build"]
hosting: {
source: "dist",
predeploy: ["npm run build"]
}
}
});
```
Expand Down
6 changes: 4 additions & 2 deletions docs/guides/sveltekit/deploy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ export default defineConfig({
development: "<DEV_SATELLITE_ID>",
production: "<PROD_SATELLITE_ID>"
},
source: "build",
predeploy: ["npm run build"]
hosting: {
source: "build",
predeploy: ["npm run build"]
}
}
});
```
Expand Down
Loading