diff options
author | 2023-01-04 03:06:07 +0800 | |
---|---|---|
committer | 2023-01-03 14:06:07 -0500 | |
commit | 5eba34fcc663def20bdf6e0daad02a6a5472776b (patch) | |
tree | 43e6112eaac84b3c66f9ad3c4fed736677f533f5 /examples/integration/index.ts | |
parent | 8fb28648f66629741cb976bfe34ccd9d8f55661e (diff) | |
download | astro-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.ts | 2 |
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 }, |