- Introduced a variable for the frontend root path to streamline content paths. - Updated content paths to reflect the new directory structure for Tailwind CSS.
21 lines
426 B
JavaScript
21 lines
426 B
JavaScript
import formsPlugin from '@tailwindcss/forms';
|
|
|
|
const frontendRoot = "./meshchatx/src/frontend";
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'selector',
|
|
content: [
|
|
`${frontendRoot}/index.html`,
|
|
`${frontendRoot}/call.html`,
|
|
`${frontendRoot}/**/*.{vue,js,ts,jsx,tsx,html}`,
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
formsPlugin,
|
|
],
|
|
}
|
|
|