14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
const {join} = require("node:path");
|
|
/** @type {import('tailwindcss').Config} */
|
|
const root = join(__dirname, "../../");
|
|
const content = join(root, "**/*.go");
|
|
|
|
console.log(content)
|
|
|
|
module.exports = {
|
|
content: [content],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|