Closed homestylew closed 1 year ago
邮件已收到~~
未能复现这个问题,另外 vite-plugin-index-html 的源码上默认导出就是函数,你可以打印下 htmlPlugin 看是不是存在 default 属性
我能私底下联系下你吗,我这边项目运行不起来
未能复现这个问题,另外 vite-plugin-index-html 的源码上默认导出就是函数,你可以打印下 htmlPlugin 看是不是存在 default 属性
import htmlPlugin from "vite-plugin-index-html"; console.log(htmlPlugin); console.log(htmlPlugin?.default); 打印出来怎么是这样呢 { removeHtmlEntryScript: [Function: removeHtmlEntryScript], default: [Function: htmlPlugin] } [Function: htmlPlugin]
跟你配置文件执行规范有关,跟插件本身没关系
"vite-plugin-index-html": "^2.0.2"
import htmlPlugin from "vite-plugin-index-html"; plugins: [ react(), htmlPlugin({ input: "src/main.tsx", preserveEntrySignatures: "exports-only", }), ], 报错htmlPlugin is not a function