Skip to content

Instantly share code, notes, and snippets.

@helabenkhalfallah
Last active April 10, 2024 19:47
Show Gist options
  • Save helabenkhalfallah/3eb83e72dde9246e1f5e6aaf41acbd53 to your computer and use it in GitHub Desktop.
Save helabenkhalfallah/3eb83e72dde9246e1f5e6aaf41acbd53 to your computer and use it in GitHub Desktop.
Svelte Project Basic Structure
// https://codesandbox.io/p/sandbox/mystifying-goldberg-7n73cn?file=%2Fpublic%2Findex.html%3A7%2C28
awesome-project/
├── src/
│ ├── components/
│ │ ├── Button.svelte
│ │ └── Header.svelte
│ ├── routes/
│ │ ├── Home.svelte
│ │ └── About.svelte
│ ├── App.svelte
│ └── index.js
├── public/
│ └── index.html
├── node_modules/
├── rollup.config.js
├── package.json
├── .gitignore
└── README.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment