87dadf1def
Embedded Web App for EV charging slot bookings. Express backend with JWT auth and AMPECO Public API proxy. React SPA with booking CRUD, availability checking, and runtime design token theming. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
258 B
TypeScript
8 lines
258 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
import { ewaUiPlugin } from '@ampeco/ewa-ui/plugin';
|
|
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{ts,tsx}', './node_modules/@ampeco/ewa-ui/dist/**/*.js'],
|
|
plugins: [ewaUiPlugin],
|
|
} satisfies Config;
|