summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorGravatar Arsh <69170106+lilnasy@users.noreply.github.com> 2023-10-10 14:06:35 +0000
committerGravatar GitHub <noreply@github.com> 2023-10-10 19:36:35 +0530
commitc071458257b014efcae7ec7e29d5d87d5ecaf8b6 (patch)
tree304078f02d38021702b96cecbc3189ff9c6689eb /examples
parent0ab6bad7dffd413c975ab00e545f8bc150f6a92f (diff)
downloadastro-c071458257b014efcae7ec7e29d5d87d5ecaf8b6.tar.gz
astro-c071458257b014efcae7ec7e29d5d87d5ecaf8b6.tar.zst
astro-c071458257b014efcae7ec7e29d5d87d5ecaf8b6.zip
chore: removed adapters cleanup (#8726)
* update ci, readme, comments, remote workspaces * fix hosted test fixture * keep adapter config typedocs
Diffstat (limited to 'examples')
-rw-r--r--examples/integration/index.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/integration/index.ts b/examples/integration/index.ts
index 8c6cb35bf..54d917e78 100644
--- a/examples/integration/index.ts
+++ b/examples/integration/index.ts
@@ -10,9 +10,9 @@ export default function createIntegration(): AstroIntegration {
// See the @astrojs/react integration for an example
// https://github.com/withastro/astro/blob/main/packages/integrations/react/src/index.ts
},
- 'astro:build:setup': ({ config, updateConfig }) => {
- // See the @astrojs/netlify integration for an example
- // https://github.com/withastro/astro/blob/main/packages/integrations/netlify/src/integration-functions.ts
+ 'astro:build:setup': ({ pages, updateConfig }) => {
+ // See the @astrojs/lit integration for an example
+ // https://github.com/withastro/astro/blob/main/packages/integrations/lit/src/index.ts
},
'astro:build:done': ({ dir, routes }) => {
// See the @astrojs/partytown integration for an example