Skip to content

Commit

Permalink
fix(studio): Upgrade to 11.0.1 and enable web-side (#9858)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe committed Jan 21, 2024
1 parent 41ac728 commit 6b4fbfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/commands/studioHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const handler = async (options) => {
console.log(
'The studio package is not installed, installing it for you, this may take a moment...'
)
await installModule('@redwoodjs/studio', '11.0.0')
await installModule('@redwoodjs/studio', '11.0.1')
console.log('Studio package installed successfully.')

console.log('Adding config to redwood.toml...')
Expand All @@ -18,7 +18,7 @@ export const handler = async (options) => {

// Import studio and start it
const { serve } = await import('@redwoodjs/studio')
await serve({ open: options.open })
await serve({ open: options.open, enableWeb: true })
} catch (e) {
console.log('Cannot start the development studio')
console.log(e)
Expand Down

0 comments on commit 6b4fbfc

Please sign in to comment.