Skip to content

Commit

Permalink
Fixed lint and check
Browse files Browse the repository at this point in the history
  • Loading branch information
cromefire committed Nov 19, 2024
1 parent bd7a209 commit c422906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/kit/src/exports/vite/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ const warning_preprocessor = {

/**
* Returns the SvelteKit Vite plugins.
* @param {{ root: string }} config
* @param {{ root?: string }} config
* @returns {Promise<import('vite').Plugin[]>}
*/
export async function sveltekit(config = {}) {
const options = {
cwd: config.root ? config.root : process.cwd(),
cwd: config.root ? config.root : process.cwd()
};
const svelte_config = await load_config(options);

Expand Down

0 comments on commit c422906

Please sign in to comment.