Update Svelte configuration files to ensure consistent formatting

- Added a trailing comma in the configuration objects of both svelte.config.js and svelte.config.docker.js for improved readability and consistency.
This commit is contained in:
2025-12-27 12:25:58 -06:00
parent 30b5f48349
commit 6a6c39ce1b
2 changed files with 6 additions and 6 deletions

View File

@@ -9,9 +9,9 @@ const config = {
assets: 'build',
fallback: 'index.html',
precompress: false,
strict: true
})
}
strict: true,
}),
},
};
export default config;

View File

@@ -11,9 +11,9 @@ const config = {
assets: 'build',
fallback: 'index.html',
precompress: false,
strict: true
})
}
strict: true,
}),
},
};
export default config;