mirror of
https://github.com/siderolabs/image-factory.git
synced 2025-08-06 22:57:09 +02:00
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>
12 lines
256 B
JavaScript
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'),
|
|
],
|
|
}
|