12 lines
306 B
JavaScript
12 lines
306 B
JavaScript
import defaultTheme from "tailwindcss/defaultTheme";
|
|
const colors = require('tailwindcss/colors');
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./Sources/ViewControllerLive/Views/*.swift",
|
|
"./Sources/ViewControllerLive/*.swift",
|
|
"./Public/images/*.svg"
|
|
],
|
|
};
|