forked from fdnd-task/lose-your-head-the-client-case
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Global Style css - Link stylesheet in head Link #9
- Loading branch information
Showing
18 changed files
with
1,465 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
node_modules | ||
|
||
# Output | ||
.output | ||
.vercel | ||
/.svelte-kit | ||
/build | ||
|
||
# OS | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Env | ||
.env | ||
.env.* | ||
!.env.example | ||
!.env.test | ||
|
||
# Vite | ||
vite.config.js.timestamp-* | ||
vite.config.ts.timestamp-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
engine-strict=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,38 @@ | ||
> _Fork_ deze leertaak en ga aan de slag. | ||
Onderstaande outline ga je gedurende deze taak in jouw eigen GitHub omgeving uitwerken. | ||
De instructie vind je in: [docs/INSTRUCTIONS.md](docs/INSTRUCTIONS.md) | ||
# create-svelte | ||
|
||
# Titel | ||
<!-- Geef je project een titel en schrijf in één zin wat het is --> | ||
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte). | ||
|
||
## Inhoudsopgave | ||
## Creating a project | ||
|
||
* [Beschrijving](#beschrijving) | ||
* [Kenmerken](#kenmerken) | ||
* [Installatie](#installatie) | ||
* [Gebruik](#gebruik) | ||
* [Bronnen](#bronnen) | ||
* [Licentie](#licentie) | ||
If you're seeing this, you've probably already done this step. Congrats! | ||
|
||
## Beschrijving | ||
<!-- In de Beschrijving staat hoe je project er uit ziet, hoe het werkt en wat je er mee kan. --> | ||
<!-- Voeg een mooie poster visual toe 📸 --> | ||
<!-- Voeg een link toe naar Github Pages 🌐--> | ||
```bash | ||
# create a new project in the current directory | ||
npm create svelte@latest | ||
|
||
## Kenmerken | ||
<!-- Bij Kenmerken staat welke technieken zijn gebruikt en hoe. Wat is de HTML structuur? Wat zijn de belangrijkste dingen in CSS? Wat is er met Javascript gedaan en hoe? Misschien heb je een framwork of library gebruikt? --> | ||
# create a new project in my-app | ||
npm create svelte@latest my-app | ||
``` | ||
|
||
## Installatie | ||
## Developing | ||
|
||
## Gebruik | ||
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: | ||
|
||
## Bronnen | ||
```bash | ||
npm run dev | ||
|
||
## Licentie | ||
# or start the server and open the app in a new browser tab | ||
npm run dev -- --open | ||
``` | ||
|
||
This project is licensed under the terms of the [MIT license](./LICENSE). | ||
## Building | ||
|
||
To create a production version of your app: | ||
|
||
```bash | ||
npm run build | ||
``` | ||
|
||
You can preview the production build with `npm run preview`. | ||
|
||
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.