Configurable First Day of Week #989
Answered
by
AlbinLind
dianaaceves
asked this question in
Q&A
|
Hi there! First of all, I want to say I absolutely love your work on this library! It fits perfectly with a project I'm about to start, and the timeline functionality is exactly what I need. However, I've encountered one blocking issue: the weeks currently start on Sunday, but I need them to start on Monday for my use case. Questions:
This would be incredibly valuable for international users where Monday is the standard first day of the week. Thanks for your time. |
Answered by
AlbinLind
Nov 14, 2025
Replies: 1 comment
|
I could change it by adding the following code import dayjs from "dayjs";
dayjs.Ls.en.weekStart = 1;I assume the |
0 replies
Answer selected by
lnagel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I could change it by adding the following code
I assume the
.enis reference to the English locale.