Skip to content

Commit f63a6de

Browse files
remove conflicting svelte integration
1 parent 57c76ee commit f63a6de

File tree

4 files changed

+2
-205
lines changed

4 files changed

+2
-205
lines changed

astro.config.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
// @ts-check
22
import { defineConfig } from 'astro/config';
3-
import svelte from '@astrojs/svelte';
43
import tailwind from '@astrojs/tailwind';
54

65
// https://astro.build/config
76
export default defineConfig({
8-
integrations: [svelte(), tailwind()],
7+
integrations: [tailwind()],
98
output: 'static',
109
site: 'https://jenniferlynparsons.github.io',
1110
base: '/selfcaretech',

package-lock.json

Lines changed: 0 additions & 200 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,9 @@
99
"astro": "astro"
1010
},
1111
"dependencies": {
12-
"@astrojs/svelte": "^7.1.0",
1312
"@astrojs/tailwind": "^6.0.2",
1413
"astro": "^5.11.0",
1514
"autoprefixer": "^10.4.21",
16-
"svelte": "^5.35.6",
1715
"tailwindcss": "^3.4.17",
1816
"typescript": "^5.8.3"
1917
}

tailwind.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @type {import('tailwindcss').Config} */
22
export default {
3-
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
3+
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,ts,tsx,vue}'],
44
theme: {
55
extend: {
66
colors: {

0 commit comments

Comments
 (0)