You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"[Svelte](https://svelte.dev/) is a tool for building web applications. Like other user interface frameworks, it allows you to build your app _declaratively_ out of components that combine markup, styles, and behaviours."
@@ -21,7 +18,7 @@ This guide provides a first-hand experience on building a Svelte project using [
21
18
cd project_name
22
19
```
23
20
24
-
**2. Install Tailwind CSS and sveltekit static adapter.** <small>[reference here](https://kit.svelte.dev/docs/adapter-static)</small>
21
+
**2. Install Tailwind CSS and `sveltekit static adapter`.**
25
22
26
23
```bash
27
24
# terminal
@@ -30,7 +27,7 @@ This guide provides a first-hand experience on building a Svelte project using [
30
27
npx tailwindcss init -p
31
28
```
32
29
33
-
**3. Enable use of PostCSS in \<style> blocks.** <small>[reference here](https://tailwindcss.com/docs/guides/sveltekit)</small>
30
+
**3. Configure `svelte config`.**
34
31
35
32
```js
36
33
// svelte.config.js
@@ -40,14 +37,29 @@ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
0 commit comments