How to fix it /* If your code is like this in global.css */ @layer base { :root { --background: 0 0% 100%; --foreground: 222.2...
How to fix it Just add a rule in lint file. // .eslintrc "rules": { /** ... **/ "tailwindcss/no-custom-classname": "off" }, Why do...
A few days ago, I had a fucking dream that useActionState can use yield to push data. It was probably that state was an array []. Every time data was...
前言 Javascript 整数表达最大为 2^53-1 位,大约是十进制16位,超过就会导致精度丢失,一般在浏览器中会直接报错。 场景 我们知道,雪花算法(SnowFlake)生成的雪花ID是 2^64...
How to accept a xlsx file and read it using Fastapi, the following is the implementation code. @application.post("/uploadFile/") async def...