mirror of
https://github.com/AventurasTeam/Aventuras.git
synced 2026-04-28 11:50:15 +00:00
* fix: prettier, eslint, pipeline * fix: eslintignore, branch trigger * fix: eslint missing package * chore: format * fix: eslint config * chore: lint wip * chore: lint * chore: lint * chore: typecheck wip * fix: typecheck * fix: typecheck * fix: pipeline: add build step * feat: pre-push code quality check
11 lines
187 B
TypeScript
11 lines
187 B
TypeScript
import type { Config } from 'tailwindcss'
|
|
|
|
const config: Config = {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|
|
export default config
|