目前我的 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>
标签?
谢谢!