[READ-ONLY] Mirror of https://github.com/danielroe/agent-conf-2023. A demo of integrating React, Vite and Nitro for AgentConf 2023. agent-conf.vercel.app/
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: move dev storage to global config (#4)

author
Estéban
committer
GitHub
date (Jun 23, 2023, 11:30 PM +0100) commit 7dbac8aa parent b5bd0e30
+7 -7
+7 -7
bin/cli.mjs
··· 54 54 route: '/**', 55 55 }, 56 56 ], 57 + bundledStorage: ['templates'], 58 + devStorage: { 59 + templates: { 60 + driver: 'fs', 61 + base: '.nitro/templates', 62 + }, 63 + }, 57 64 devHandlers: [ 58 65 { 59 66 route: '/__vite', ··· 100 107 const nitro = await createNitro({ 101 108 rootDir, 102 109 dev: false, 103 - bundledStorage: ['templates'], 104 - devStorage: { 105 - templates: { 106 - driver: 'fs', 107 - base: '.nitro/templates', 108 - }, 109 - }, 110 110 ...(config.nitro ?? {}), 111 111 }) 112 112 await prepare(nitro)