As you may know, tailwind 4 is now available. In v 3 and prior i always use this little snippet in my config file to get whatever spacing values i want. But how can i use it in v 4, since there is no config anymore?
spacing: { ...new Array(1001) .fill() .map((_, i) => i) .reduce((acc, val) => { acc[val] = `${val / 10}rem`; return acc; }, {}), },