Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
eltigerchino committed Oct 25, 2024
1 parent 6bd9c03 commit 7d059af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/kit/src/exports/vite/preview/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ export async function preview(vite, vite_config, svelte_config) {

const { pathname, search } = new URL(/** @type {string} */ (req.url), 'http://dummy');

let filename = decodeURI(normalizePath(
join(svelte_config.kit.outDir, 'output/prerendered/pages' + pathname)
));
let filename = decodeURI(
normalizePath(join(svelte_config.kit.outDir, 'output/prerendered/pages' + pathname))
);
let prerendered = is_file(filename);

if (!prerendered) {
Expand Down

0 comments on commit 7d059af

Please sign in to comment.