Skip to content

Commit b7b67fa

Browse files
authored
fix: use fs driver to fix deployment issue (#30)
1 parent 7498389 commit b7b67fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nuxt.config.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ export default defineNuxtConfig({
141141
},
142142
appConfig: {
143143
storage: {
144-
driver: process.env.NUXT_STORAGE_DRIVER ?? (isCI ? 'cloudflare' : 'fs'),
144+
// driver: process.env.NUXT_STORAGE_DRIVER ?? (isCI ? 'cloudflare' : 'fs'), // TODO: add cloudflare driver back if necessary
145+
driver: process.env.NUXT_STORAGE_DRIVER ?? 'fs',
145146
},
146147
},
147148
runtimeConfig: {

0 commit comments

Comments
 (0)