A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at f7813fec94ac7f5cec8d9af29ab9be2123ffc74f 15 lines 413 B view raw
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};