diff options
author | 2023-10-10 14:06:35 +0000 | |
---|---|---|
committer | 2023-10-10 19:36:35 +0530 | |
commit | c071458257b014efcae7ec7e29d5d87d5ecaf8b6 (patch) | |
tree | 304078f02d38021702b96cecbc3189ff9c6689eb /examples | |
parent | 0ab6bad7dffd413c975ab00e545f8bc150f6a92f (diff) | |
download | astro-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.ts | 6 |
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 |