summaryrefslogtreecommitdiff
path: root/examples/integration/index.ts
diff options
context:
space:
mode:
authorGravatar Bjorn Lu <bjornlu.dev@gmail.com> 2023-01-04 03:06:07 +0800
committerGravatar GitHub <noreply@github.com> 2023-01-03 14:06:07 -0500
commit5eba34fcc663def20bdf6e0daad02a6a5472776b (patch)
tree43e6112eaac84b3c66f9ad3c4fed736677f533f5 /examples/integration/index.ts
parent8fb28648f66629741cb976bfe34ccd9d8f55661e (diff)
downloadastro-5eba34fcc663def20bdf6e0daad02a6a5472776b.tar.gz
astro-5eba34fcc663def20bdf6e0daad02a6a5472776b.tar.zst
astro-5eba34fcc663def20bdf6e0daad02a6a5472776b.zip
Remove deprecated APIs (#5707)
* Remove deprecated Astro globals * Remove deprecated hook param * Fix test * Add changeset * Add TODO
Diffstat (limited to 'examples/integration/index.ts')
-rw-r--r--examples/integration/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/integration/index.ts b/examples/integration/index.ts
index 2c7249b83..8c6cb35bf 100644
--- a/examples/integration/index.ts
+++ b/examples/integration/index.ts
@@ -10,7 +10,7 @@ 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:start': ({ buildConfig }) => {
+ '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
},