diff options
Diffstat (limited to 'web/tailwind.config.js')
| -rw-r--r-- | web/tailwind.config.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/web/tailwind.config.js b/web/tailwind.config.js new file mode 100644 index 0000000..a1684d0 --- /dev/null +++ b/web/tailwind.config.js @@ -0,0 +1,16 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + "./components/**/*.{js,vue,ts}", + "./layouts/**/*.vue", + "./pages/**/*.vue", + "./plugins/**/*.{js,ts}", + "./app.vue", + "./error.vue", + ], + theme: { + extend: {}, + }, + plugins: [], +} + |
