forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1/** @type {import('tailwindcss').Config} */
2module.exports = {
3 // NOTE: Update this to include the paths to all of your component files.
4 content: ["./src/**/*.{js,jsx,ts,tsx}"],
5 presets: [require("nativewind/preset")],
6 theme: {
7 extend: {
8 fontFamily: {
9 "rockford-regular": ["RockfordSansRegular"],
10 "rockford-medium": ["RockfordSansMedium"],
11 },
12 },
13 },
14 plugins: [],
15};