code-kitchen icon indicating copy to clipboard operation
code-kitchen copied to clipboard

🧑‍🍳 A pure-static live-coding playground that is easy to be used in a closed source environment for React UI Libraries.

Results 12 code-kitchen issues
Sort by recently updated
recently updated
newest added

如果导入了外部应用没有的包还能正常工作吗?

非常感谢你的开源,帮了我很大的忙,但是现在一般基于scss,原不支持,经过一些研究我修改了一个支持scss的方案: 引入: 在bundle.ts中的resolvePlugin方法build.onLoad中添加编译scss, ```javascript else if (/\.scss$/.test(file.filename)) { return new Promise((resolve,reject) =>{ return window.Sass.compile(file.code, function(result) { if (result.status === 0) { // console.log(result.text); // 编译后的 CSS const sassCssModuleResult = compileCssModule(result.text,...