React - 我们可以将 sass 编译为内部样式吗?

时间:2021-01-11 07:41:42

标签: javascript webpack sass next.js vercel

目前我的 withSass 正在将我的 scss 编译成块,块将被导入到我的应用程序中。

这是配置的片段,我使用的是 @zeit/next-sass

sassLoaderOptions: {
    data: '$imageRootUrl: "' + (cdnEnabled ? process.env.CDN_BASE_URL + '/static/' : '/static/') +'";',
    outputStyle: "compressed",
  },

可以或是否有任何选项允许 withSass 使用

将我的 scss 直接编译到 html 中
<style> 
-- compiled css here --
</style>

标签?

谢谢!

0 个答案:

没有答案