Added svelte and removed track on package-lock

This commit is contained in:
Thomas Cole 2022-06-29 09:47:49 -04:00
parent aa6625cab7
commit fbd6bff2a9
3 changed files with 11 additions and 1 deletions

2
.gitignore vendored
View File

@ -18,3 +18,5 @@ pnpm-debug.log*
# macOS-specific files # macOS-specific files
.DS_Store .DS_Store
package-lock.json

View File

@ -1,4 +1,8 @@
import { defineConfig } from 'astro/config'; import { defineConfig } from 'astro/config';
import svelte from '@astrojs/svelte';
// https://astro.build/config // https://astro.build/config
export default defineConfig({}); export default defineConfig({
integrations: [svelte()],
});

View File

@ -9,6 +9,10 @@
"preview": "astro preview" "preview": "astro preview"
}, },
"devDependencies": { "devDependencies": {
"@astrojs/svelte": "0.2.0",
"astro": "^1.0.0-beta.58" "astro": "^1.0.0-beta.58"
},
"dependencies": {
"svelte":"^3.48.0"
} }
} }