diff --git a/vendor/integration/index.mjs b/vendor/integration/index.mjs index 3cf09c0..20e8181 100644 --- a/vendor/integration/index.mjs +++ b/vendor/integration/index.mjs @@ -4,10 +4,10 @@ import os from 'node:os'; import configBuilder from './utils/configBuilder'; import loadConfig from './utils/loadConfig'; -const tasksIntegration = ({ config: _themeConfig = 'src/config.yaml' } = {}) => { +export default ({ config: _themeConfig = 'src/config.yaml' } = {}) => { let cfg; return { - name: 'AstroWind:tasks', + name: 'astrowind-integration', hooks: { 'astro:config:setup': async ({ @@ -111,6 +111,4 @@ const tasksIntegration = ({ config: _themeConfig = 'src/config.yaml' } = {}) => }, }, }; -}; - -export default tasksIntegration; +}; \ No newline at end of file