#404 page not found

4 messages · Page 1 of 1 (latest)

tawny helm
#

Hey I am trying to run a simple Svelte-kit project on appwrite self-hosted but the logs says:

[13:56:26] [open-runtimes] Build packaging finished. 
[13:56:26] [open-runtimes] Build finished. 
[13:56:30] [appwrite] Deployment finished. 

But than when I go to the url it says literally 404 page not found

Does anyone know what I am doing wrong?
-# The sveltekit project is located in the ./frontend/web of my private gh repo

mossy sandal
tawny helm
#

svelte.config.js

import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';

/** @type {import('@sveltejs/kit').Config} */
const config = {
    preprocess: vitePreprocess(),
    kit: {
        adapter: adapter(),
        alias: { $components: 'src/components' },
    },
    runes: true,
    vitePlugin: {
        dynamicCompileOptions: ({ filename }) =>
            filename.includes('node_modules') ? undefined : { runes: true },
    },
};

export default config;
mossy sandal