mirror of
https://github.com/stinsonzhao/obsidian-plugin-goban-sgf.git
synced 2026-07-22 09:30:26 +00:00
15 lines
289 B
JavaScript
15 lines
289 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
important: ".goban-sgf-plugin-container",
|
|
darkMode: ['class', 'body.theme-dark'],
|
|
content: ["./src/**/*.{html,js,ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
},
|
|
},
|
|
plugins: [],
|
|
corePlugins: {
|
|
preflight: false,
|
|
}
|
|
}
|
|
|