diff --git a/.prettierignore b/.prettierignore index 82c78a5..dce42f0 100644 --- a/.prettierignore +++ b/.prettierignore @@ -6,3 +6,7 @@ dist/ # dependencies node_modules/ + +# Lock files +pnpm-lock.yaml +package-lock.json diff --git a/astro.config.mjs b/astro.config.mjs index 78fb7b0..0e47d21 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -5,5 +5,5 @@ import svelte from "@astrojs/svelte"; // https://astro.build/config export default defineConfig({ - integrations: [tailwind(), svelte()] -}); \ No newline at end of file + integrations: [tailwind(), svelte()], +}); diff --git a/svelte.config.js b/svelte.config.js index cbaee33..cf44f38 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,5 +1,5 @@ -import { vitePreprocess } from '@astrojs/svelte'; +import { vitePreprocess } from "@astrojs/svelte"; export default { - preprocess: vitePreprocess(), + preprocess: vitePreprocess(), };