vite-plugin-markdown-preview icon indicating copy to clipboard operation
vite-plugin-markdown-preview copied to clipboard

在windows上有路径问题

Open u373693041 opened this issue 2 years ago • 1 comments

地址会变成一串 image

u373693041 avatar Aug 23 '22 07:08 u373693041

const resolve = (...args) => {
    let ret = path.resolve(path.dirname(file), ...args);
    ret = path.relative(root, ret);
    return `/${ret}`;
  };

change to

import slash from 'slash';

const resolve = (...args) => {
    let ret = path.resolve(path.dirname(file), ...args);
    ret = path.relative(root, ret);
    ret = slash(ret)
    return `/${ret}`;
  };

can solve the question

u373693041 avatar Aug 23 '22 07:08 u373693041

resolved

JasKang avatar Jan 11 '23 10:01 JasKang