Leo Benkel

Results 57 comments of Leo Benkel

the log gets really confusing because i didn't create the `data` folder and now i am not sure if it cannot connect to the local one that failed or if...

I am also getting pages like `/server/pages/500` in my sitemap

I ended up using https://github.com/iamvishnusankar/next-sitemap instead of the netlify plugin and it works much better

Here is how I initialize the calendar. I am using `requirejs` ```javascript let calendar = new calendarLib({ selector: '.calendar-container', lang: 'en', langFolder: '/config/calendar/langs/', format: 'YYYY-MM-DD', defaultDate: null, todayHighlight: true, weekStart:...

Thank you for your suggestion but I need to have something richer than just one color.

I got the latest from the [Release](https://github.com/mauroreisvieira/hello-week/releases) which is `2.10.3`. I have an array of date with an array of color, and I need to add blocks for all those...

ok, i am trying to load the v3 but for some reason `requireJS` is not happy about it. works perfectly with v2.x that i was using tho.

ok , I made some progress. I was able to add the library to `RequireJS` , using ``` paths: { ...other libraries... calendarLib: [ '//cdn.jsdelivr.net/npm/[email protected]/dist/hello.week.min' ] }, shim: { calendarLib:...

What I am doing right now: ```javascript beforeCreateDay: function (input) { // ... more code ... let container = // ... build all the colors ... let dayContent = $(``);...

Thank you for your explanation ! I understand how to use `el()` but I dont understand how to bring into my code using `RequireJS`. the file where i use `HelloWeek`...