Marian Meres
Results
2
comments of
Marian Meres
It is possible to use sveltekit outside of the domain root, all you need is define the base path in the `svelte.config.js` ```javascript const config = { preprocess: vitePreprocess(), kit:...
Or even better like this: ```javascript ... paths: { base: process.env.PUBLIC_BASE_PATH, }, ... ```