Open
Conversation
-移除chalk-template,改为使用chalk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
CORS 支持
在 devServer 配置中添加了 CORS headers
修复编译问题
问题原因:
chalk-template 1.1.0 版本是一个纯 ES 模块,不能在 CommonJS 环境中使用 require() 导入
项目的 TypeScript 配置将模块编译为 CommonJS 格式 ("module": "commonjs")
这导致了 ERR_REQUIRE_ESM 错误
解决方案:
我将 chalk-template 替换为 chalk,具体修改如下:
移除了 ES 模块导入:
替换了模板字符串调用:
保持了相同的颜色效果.
Tip
由于使用了代码自动格式化插件,Diff可能不易阅读,很抱歉对开发者带来了麻烦