summaryrefslogtreecommitdiff
path: root/examples/integration/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'examples/integration/index.ts')
-rw-r--r--examples/integration/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/integration/index.ts b/examples/integration/index.ts
index 54d917e78..8b34afd23 100644
--- a/examples/integration/index.ts
+++ b/examples/integration/index.ts
@@ -10,11 +10,11 @@ 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': ({ pages, updateConfig }) => {
+ 'astro:build:setup': () => {
// 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 }) => {
+ 'astro:build:done': () => {
// See the @astrojs/partytown integration for an example
// https://github.com/withastro/astro/blob/main/packages/integrations/partytown/src/index.ts
},