Hey guys,

I want to host my SvelteKit website with GitHub pages but it seems that some folders are way to big for example the node\_modules folder with all its packages is to big. But I would say without this folder my page is not working. So is there some kind of tool I have to use ? Or how is it done ?

​

thanks a lot

have a nice weekend
Add node_modules to your .gitignore file and then use the svelte kit static adapter in your svelte.config.js to build the site to a docs folder, then setup GH pages and select the docs folder as the source.