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.ts
import { defineConfig } from 'vite';
import wasmPack from 'vite-plugin-wasm-pack';

export default defineConfig({
  build: {
    minify: false,
    target: ['chrome67', 'firefox68', 'safari14', 'edge79']
  },
  plugins: [wasmPack(['./my-crate'])]
});