Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: docs
> ./packages/vue/tailwind.config.js
import path from 'path';
import { fileURLToPath } from 'url';
const __configDir = path.dirname(fileURLToPath(import.meta.url));
/**
* Shared color/theme palette lives in the core preset (single source of truth,
* identical to React); this config only adds the Vue-specific content glob
* (must include .vue SFCs) + .ep-root scoping.
* @type {import('tailwindcss').Config}
*/
export default {
presets: [require('../core/tailwind-preset.cjs')],
// Scope all utilities under .ep-root to avoid clashing with host app CSS
important: '.ep-root',
// Only scan library source files, not demo. Absolute path so this works no
// matter where Tailwind is invoked from (vite runs from packages/vue; see #340).
content: [path.join(__configDir, 'src/**/*.{ts,tsx,vue}')],
};