mirror of https://github.com/longtai-cn/hippo4j
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
285 B
11 lines
285 B
1 year ago
|
module.exports = {
|
||
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
corePlugins: { preflight: false },
|
||
|
// set dark mode. example <h1 className="text-black dark:text-white">Hello, World!</h1>
|
||
|
darkMode: ["class", '[data-theme="dark"]'],
|
||
|
};
|