Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonmade committed Aug 31, 2024
1 parent 25d7c6f commit 03e65dc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/cli/source/commands/develop/develop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,10 @@ async function prompt(prompt: Omit<PromptObject, 'name'>) {
return result.value;
}

async function createDevServer(app: LocalApp, {ui, proxy}: {ui: Ui; proxy?: string}) {
async function createDevServer(
app: LocalApp,
{ui, proxy}: {ui: Ui; proxy?: string},
) {
const router = new RequestRouter();
const outputRoot = path.resolve(rootOutputDirectory(app), 'develop');

Expand Down

0 comments on commit 03e65dc

Please sign in to comment.