Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

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

const config = {
  extensions: ['.svelte', '.svx'],
  compilerOptions: {
    runes: true
  },
  preprocess: [
    vitePreprocess({
      script: true,
      style: true
    }),
    mdsvex()
  ],
  kit: {
    adapter: adapter(),
    paths: {
      relative: false
    }
  }
};

export default config;