diff --git a/packages/gdu/commands/build/buildSPA.ts b/packages/gdu/commands/build/buildSPA.ts index 000409a..349b909 100644 --- a/packages/gdu/commands/build/buildSPA.ts +++ b/packages/gdu/commands/build/buildSPA.ts @@ -5,7 +5,7 @@ import { GuruConfig } from '../../lib/config'; import { run } from '../../lib/runWebpack'; import { getHooks } from '../../utils/hooks'; -export const buildSPA = async (guruConfig: GuruConfig, tenant: string) => { +export const buildSPA = async (guruConfig: GuruConfig) => { const hooks = getHooks(); // eslint-disable-next-line unicorn/prefer-prototype-methods diff --git a/packages/gdu/commands/build/index.ts b/packages/gdu/commands/build/index.ts index bffc2c4..03d0974 100644 --- a/packages/gdu/commands/build/index.ts +++ b/packages/gdu/commands/build/index.ts @@ -21,7 +21,7 @@ export default async ({ tenant }) => { let stats; switch (guruConfig?.type) { case 'spa': - stats = await buildSPA(guruConfig, tenant); + stats = await buildSPA(guruConfig); break; case 'ssr': stats = await buildSSR(guruConfig);