mirror of
https://github.com/axzilla/templui.git
synced 2025-02-21 21:12:48 +00:00
- Create tailwind.config.lib.js for library-specific config - Add generate-lib-css command to build process - Produce goilerplate.css in pkg/styles for lib components - Improve performance by reducing CSS file size for lib users - Maintain shared styles between main and lib CSS
7 lines
142 B
JavaScript
7 lines
142 B
JavaScript
const baseConfig = require("./tailwind.config.js");
|
|
|
|
module.exports = {
|
|
...baseConfig,
|
|
content: ["./pkg/**/*.templ", "./pkg/**/*.go"],
|
|
};
|