Skip to content

Commit

Permalink
chore: changed Tailwind config from JS to TS (#3579)
Browse files Browse the repository at this point in the history
* chore: favour ts config

* chore: release

* chore: changeset

* chore: change set

* Update .github/workflows/pr-release.yaml
  • Loading branch information
petertonysmith94 authored Jan 13, 2025
1 parent d633eaf commit 71691a2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/ten-cherries-perform.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-fuels": patch
---

chore: changed Tailwind config from JS to TS
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
import type { Config } from 'tailwindcss';

export default {
content: ['./index.html', './src/**/*.{js,jsx,ts,tsx}'],
theme: {
fontFamily: {
Expand Down Expand Up @@ -31,4 +32,4 @@ module.exports = {
},
},
plugins: [],
};
} satisfies Config;

0 comments on commit 71691a2

Please sign in to comment.