Preview:
import { setPreLoadFile } from './vite-plugin-preload'

export default defineConfig(({ mode }) => ({
    plugins: [
        // 设置预加载文件,提升页面首次加载速度(仅开发环境需要)
        mode === 'development' && setPreLoadFile({
            pathList: [ // 需要提前加载的资源目录
                './src/views/',
                './src/components/'
            ],
            preFix: '/cflow' // 项目根路径
        })
    ]
}))
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter