11 lines
236 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @name ConfigQrcodePlugin
* @description 引入qrcode插件用于在浏览器中显示当前页面的二维码
*/
import { qrcode } from 'vite-plugin-qrcode';
export const ConfigQrcodePlugin = () => {
return qrcode();
};