2024-05-14 15:34:18 -04:00
|
|
|
import * as TW from "./core.js";
|
|
|
|
import {presetAutoprefix, presetTailwind} from "./presets.js"
|
2024-05-14 12:19:01 -04:00
|
|
|
|
2024-05-14 15:34:18 -04:00
|
|
|
const Configure =
|
|
|
|
{
|
|
|
|
theme: {},
|
|
|
|
presets: [presetAutoprefix(), presetTailwind()],
|
|
|
|
hash: false
|
|
|
|
} as TW.TwindUserConfig;
|
2024-05-14 12:19:01 -04:00
|
|
|
|
2024-05-14 15:34:18 -04:00
|
|
|
console.log(TW.install(Configure));
|