This repository has been archived on 2024-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
onepiece-webring/tailwind.config.js

17 lines
282 B
JavaScript
Raw Permalink Normal View History

/** @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: [],
}