software-engineering-for-data-science-2024-introduction-to-svelte-svelte_guide Svelte Themes

Software Engineering For Data Science 2024 Introduction To Svelte Svelte_guide

software-engineering-for-data-science-2024-introduction-to-svelte-svelte_guide created by GitHub Classroom

Svelte tutorial

To start the project, run the following commands:

npm create svelte@latest .

When prompted, select the following:

  • Create the project in the current directory
  • Choose continue
  • Choose Skeleton project
  • Use TypeScript
  • Choose the default options for the rest of the questions

After the project is created, we will set up the project to use Tailwind CSS.

npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
`

In `svite.config.js`, add the following:

```js
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
  kit: {
    adapter: adapter()
  },
  preprocess: vitePreprocess()
};
export default config;

In tailwind.config.js, add the following:

/** @type {import('tailwindcss').Config} */
export default {
  content: ['./src/**/*.{html,js,svelte,ts}'],
  theme: {
    extend: {}
  },
  plugins: []
};

Create a ./src/app.css file and add the following:

@tailwind base;
@tailwind components;
@tailwind utilities;

Create a ./src/routes/+layout.svelte file and add the following:

<script>
  import '../app.css';
</script>

<slot />

Top categories

svelte logo

Need a Svelte website built?

Hire a professional Svelte developer today.
Loading Svelte Themes