nuxt-swiper
nuxt-swiper copied to clipboard
Add css properly using push, instead of destruct the css array
Why this change?
- It is faster
- In my application, imports with
@import url('@/some/directory/my-file.css');will be broken due to the destruction. With push it is no problem.