Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

样式支持scss编译 #25

Open
xianzou opened this issue Sep 20, 2024 · 0 comments
Open

样式支持scss编译 #25

xianzou opened this issue Sep 20, 2024 · 0 comments

Comments

@xianzou
Copy link

xianzou commented Sep 20, 2024

非常感谢你的开源,帮了我很大的忙,但是现在一般基于scss,原不支持,经过一些研究我修改了一个支持scss的方案:
引入:<script src="https://unpkg.com/sass.js/dist/sass.sync.js"></script>
在bundle.ts中的resolvePlugin方法build.onLoad中添加编译scss,

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, buildId)
                      resolve(sassCssModuleResult);
                  } else {
                    // console.error(result.formatted); // 错误信息
                    reject(result.formatted);
                  }
              });
              })
            }

已测试,可以实现scss的变异

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant