You may press a in the terminal to switch between schemas.
import { pluginQRCode } from '@lynx-js/qrcode-rsbuild-plugin'import { defineConfig } from '@lynx-js/rspeedy'export default defineConfig({ plugins: [ pluginQRCode({ schema(url) { return { http: url, foo: `foo://lynx?url=${encodeURIComponent(url)}&dev=1`, bar: `bar://lynx?url=${encodeURIComponent(url)}`, } }, }), ],})
Except as otherwise noted, this work is licensed under a Creative Commons Attribution 4.0 International License, and code samples are licensed under the Apache License 2.0.