NOTE: You don't need to chain with value-loader per-se, but doing so gives you caching, nested dependency monitoring/reloading and the ability to use webpack's tree-shaking abilities.
.btn { @apply .font-bold .py-2 .px-4 .rounded; } .btn-blue { @apply .bg-blue .text-white; } .btn-blue:hover { @apply .bg-blue-dark; } and after running webpack I can ...