Skip to content

Commit 443e3e2

Browse files
committed
package test 19
1 parent abe1a44 commit 443e3e2

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

header/global.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

header/postcss.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import tailwindcss from 'tailwindcss';
2+
import autoprefixer from 'autoprefixer';
3+
4+
export default {
5+
plugins: [
6+
tailwindcss(),
7+
autoprefixer(),
8+
],
9+
}

header/tailwind.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/** @type {import('tailwindcss').Config} */
2+
export default {
3+
content: ['src/*.tsx'],
4+
theme: {
5+
extend: {},
6+
},
7+
plugins: [],
8+
}
9+

0 commit comments

Comments
 (0)