Skip to content

Commit 43f8bb2

Browse files
Updated the build config
1 parent f5fcb1f commit 43f8bb2

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"build:postcss": "cross-env TAILWIND_MODE=build NODE_ENV=production cross-env-shell postcss static/global.css -o static/global.css",
6767
"build:postcss:taildwindcss": "cross-env TAILWIND_MODE=build NODE_ENV=production STYLE_TYPE=TAILWIND postcss src/styles/tailwind.postcss -o static/tailwind.css",
6868
"build:sveltekit": "cross-env-shell svelte-kit build",
69-
"build": "run-s check-env remove-css build:sitemap:prod build:env:prod build:scss build:postcss build:postcss:taildwindcss build:sveltekit build:env:local",
69+
"build": "run-s remove-css build:sitemap:prod build:env:prod build:scss build:postcss build:postcss:taildwindcss build:sveltekit build:env:local",
7070
"build:verbose:sveltekit": "cross-env-shell svelte-kit build --verbose",
7171
"build:verbose": "run-s check-env remove-css build:sitemap:prod build:env:prod build:scss build:postcss build:postcss:taildwindcss build:verbose:sveltekit build:env:local",
7272
"build:static": "cross-env ADAPTER=static OPTIONS='{}' npm run build",

src/lib/shared/components/project-card/ProjectCard.svelte

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,14 @@
2020
</script>
2121

2222
{#if project && project?.slug}
23-
<!-- <a sveltekit:prefetch class="mb-4 hover:shadow" href="{`/projects/${project?.slug}`}" aria-label="{project?.title}"> -->
24-
<div class="flex items-center border border-gray-200 dark:border-gray-800 rounded p-4">
25-
<div>
26-
<h4 class="text-lg font-bold tracking-tight text-gray-900 dark:text-gray-100">
27-
{project?.title}
28-
</h4>
29-
<p class="leading-5 text-gray-700 dark:text-gray-300">
30-
{project?.description}
31-
</p>
32-
</div>
23+
<div class="flex items-center border border-gray-200 dark:border-gray-800 rounded p-4">
24+
<div>
25+
<h4 class="text-lg font-bold tracking-tight text-gray-900 dark:text-gray-100">
26+
{project?.title}
27+
</h4>
28+
<p class="leading-5 text-gray-700 dark:text-gray-300">
29+
{project?.description}
30+
</p>
3331
</div>
34-
<!-- </a> -->
32+
</div>
3533
{/if}

src/routes/__layout.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Start: Local Imports
33
44
// Start: External Imports
5-
import '../styles/tailwind.postcss';
5+
66
77
// End: External Imports
88

0 commit comments

Comments
 (0)