Skip to content

Commit

Permalink
chore: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Mar 8, 2024
1 parent 6d044d3 commit 45ad7d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ async function nitroModule(nitro: Nitro) {
// Make sure runtime is transpiled
nitro.options.externals.inline = nitro.options.externals.inline || [];
nitro.options.externals.inline.push(
fileURLToPath(new URL("runtime/", import.meta.url))
fileURLToPath(new URL("runtime/", import.meta.url)),
);

// Add plugin to inject bindings to dev server
nitro.options.plugins = nitro.options.plugins || [];
nitro.options.plugins.push(
fileURLToPath(new URL("runtime/plugin.dev", import.meta.url))
fileURLToPath(new URL("runtime/plugin.dev", import.meta.url)),
);
}

Expand Down

0 comments on commit 45ad7d2

Please sign in to comment.