diff --git a/src/rollup/config.ts b/src/rollup/config.ts index d0c36e1ba1..2424c31cb9 100644 --- a/src/rollup/config.ts +++ b/src/rollup/config.ts @@ -104,8 +104,7 @@ export const getRollupConfig = (sigmaContext: SigmaContext) => { 'process.env.PUBLIC_PATH': JSON.stringify(sigmaContext._nuxt.publicPath), 'process.env.NUXT_STATIC_BASE': JSON.stringify(sigmaContext._nuxt.staticAssets.base), 'process.env.NUXT_STATIC_VERSION': JSON.stringify(sigmaContext._nuxt.staticAssets.version), - // @ts-ignore - 'process.env.NUXT_FULL_STATIC': sigmaContext.fullStatic, + 'process.env.NUXT_FULL_STATIC': sigmaContext._nuxt.fullStatic as unknown as string, 'process.env.SIGMA_PRESET': JSON.stringify(sigmaContext.preset) } }))