Added svelte and removed track on package-lock
This commit is contained in:
parent
aa6625cab7
commit
fbd6bff2a9
2
.gitignore
vendored
2
.gitignore
vendored
@ -18,3 +18,5 @@ pnpm-debug.log*
|
|||||||
|
|
||||||
# macOS-specific files
|
# macOS-specific files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
package-lock.json
|
||||||
|
@ -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()],
|
||||||
|
});
|
||||||
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user