Skip to content

Commit

Permalink
fix: set session password in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kingyue737 committed Feb 25, 2024
1 parent 663763c commit d7056e9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ export default defineNuxtConfig({
},
session: {
name: 'nuxt-session',
password: '',
password: process.env.CI
? 'your-super-long-secret-for-session-encryption'
: '',
},
},
})

0 comments on commit d7056e9

Please sign in to comment.