引入cssnext到weex中來,例如
<style scoped lang="cssnext">
.group {
background-color: color(red alpha(-10%));
}
</style>
webpack透過loader可以實現cssnext的語法的編譯,得到"backgroundColor": "rgba(255,0,0,0.9)"
,但是如何在weex debug/compile的時候做到這個?是使用姿勢不對還是有什麼重要的文檔沒看到...
燈塔,I need you
weex-toolkit 不提供對cssnext的支持,這個需要你自己寫webpack然後build JS Bundle然後用weex debug 對應的JS Bundle就好了,關於webpack.config.js可以參考這裡https://github.com/ weex-plugi...