Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

vite.config.js
import { sveltekit } from '@sveltejs/kit/vite';

/** @type {import('vite').UserConfig} */
const config = {
    plugins: [sveltekit()],
    css: {
	preprocessorOptions: {
	    scss: {
		additionalData: '@use "src/variables.scss" as *;'
	    }
	}
    }
};

export default config;