bkilinc
bkilinc
"body-parser" is in "devDependencies" section. It should be in "dependencies" section.
In theme zephyr, nav link colors are also dark. This is because CSS variables are not used. Currently nav link color is set as follows; ```scss // Navs $nav-link-color: $body-color...
In my opinion type-casting should not be done in this level. It should be done in higher level ORM like libraries. Type casting in here is one-way. Only for result...
I used a wildcard style for reset, like this ; ```css * { margin: 0; padding: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; box-sizing: border-box; font-size: 14px; } ```...
when running migrations on node 22 with esm support, it throws following error message and migrations are not run. ``` Function.prototype.apply was called on undefined, which is a undefined and...