A small side-project to learn SvelteKit and Firebase, and experimenting with creating an API backend.
( Frontpage still missing, currently no new Lists can be created )
npm run dev
Installing a skeleton Svelte project
npm create svelte@latest <app-name>
cd <app-name>
npm install
Installing a preprocessor and SASS
npm install svelte-preprocess sass --save-dev
Edit the svelte.config.js
import adapter from "@sveltejs/adapter-auto";
import preprocess from "svelte-preprocess"; //<--
const config = {
preprocess: preprocess(), //<--
kit: {
adapter: adapter(),
},
};
export default config;
In your svelte components, add lang="sass"
to the style tag
<style lang="sass">
/** */
</style>
To start with, I created a global.sass file in /static/global.css
, and import it within src/app.html
<link rel="stylesheet" href="%sveltekit.assets%/global.css" />
Note that I imported a .css file, so there is no need to add the SASS package to the (non-dev-)dependencies. Instead I use the SASS compiler plugin for VSCode and set it up to watch only this global.css file in the .code-workspace file.
{
"settings": {
"liveSassCompile.settings.includeItems": [
"/static/global.sass"
]
}
}
I have set up a _colors.sass
file that contains variables with all colors I want to use within this project.
In order to auto import it into all svelte files, you have to add it to the svelte-preprocessor in svelte.config.js
const config = {
preprocess: preprocess({
sass: {
prependData: `@use 'src/sass/colors' as colors`,
},
}),
// . . .
};
Now every file can use those colors with, for example:
h1
color: colors.$text-color
Add the following lines to user settings.json
( ctrl+shift+p -> Preferences: Open User Settings (JSON)
) to automatically format and prettify all .svelte files on save:
"[svelte]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "svelte.svelte-vscode"
}