Skip to content

Commit

Permalink
fix NUXT_FULL_STATIC
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Nov 21, 2020
1 parent 95e4538 commit 6e06711
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/rollup/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}))
Expand Down

0 comments on commit 6e06711

Please sign in to comment.