DEV Community

Discussion on: How to Change Between Light and Dark Themes in Ant Design

Collapse
 
hrahimi270 profile image
Hossein Rahimi

Hi Jose, thanks for your post.
Do you have any idea how to implement it with Next.js?

Collapse
 
joserfelix profile image
Jose Felix

I believe Next.js would work just fine with it. Give it a try and, please, let me know if you have any problems. Cheers 😎

Collapse
 
hrahimi270 profile image
Hossein Rahimi

I was looking for an approach without using Gulp. Do you think this can be done just by Webpack inside next.config.js?

Thread Thread
 
joserfelix profile image
Jose Felix

Yes, you can even do it with vanilla Javascript!

Thread Thread
 
hrahimi270 profile image
Hossein Rahimi

How? (:

Thread Thread
 
joserfelix profile image
Jose Felix

It depends on how you decide to do it. If it is with vanilla Javascript (node), check out FS operations. On the other hand, for Webpack check out their documentation on writing a plugin.