image-factory/tailwind.config.js
Andrey Smirnov 2f92d92c57
feat: implement simple UI for the Image Service
Fixes #18

The intention is to provide educational frontend so that people can get
comfortable using the Image Service by building the appropriate links.

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
2023-09-14 18:26:08 +04:00

12 lines
256 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./internal/frontend/http/templates/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}