unplugin-vue-components icon indicating copy to clipboard operation
unplugin-vue-components copied to clipboard

tsx组件中丢失sourcemap

Open weilence opened this issue 2 years ago • 0 comments

当使用vite时,在chrome或edge中sourcemap会丢失,无法添加断点

Components({
  dts: true,
}),

image 但添加了include属性后正常

Components({
  dts: true,
  include: [/\.vue$/],
}),

image

weilence avatar May 21 '22 08:05 weilence