mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-26 20:22:30 +00:00
Fix path to templates that's used when minifying tailwind CSS
This commit is contained in:
parent
f33d30cb9d
commit
c2b44537aa
1 changed files with 9 additions and 9 deletions
|
@ -11,18 +11,18 @@ module.exports = {
|
|||
theme: {
|
||||
fontFamily: {
|
||||
display: [
|
||||
"Spectral", "Constantia", "Lucida Bright", "Lucidabright", "Lucida Serif", "Lucida", "DejaVu Serif", "Bitstream Vera Serif",
|
||||
"Spectral", "Constantia", "Lucida Bright", "Lucidabright", "Lucida Serif", "Lucida", "DejaVu Serif", "Bitstream Vera Serif",
|
||||
"Liberation Serif", "Georgia", "serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
|
||||
"Noto Color Emoji"
|
||||
],
|
||||
body: [
|
||||
"JetBrains Mono", "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono",
|
||||
"Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", "Apple Color Emoji", "Segoe UI Emoji",
|
||||
"JetBrains Mono", "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono",
|
||||
"Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", "Apple Color Emoji", "Segoe UI Emoji",
|
||||
"Segoe UI Symbol", "Noto Color Emoji"
|
||||
],
|
||||
mono: [
|
||||
"JetBrains Mono", "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono",
|
||||
"Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", "Apple Color Emoji", "Segoe UI Emoji",
|
||||
"JetBrains Mono", "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono",
|
||||
"Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", "Apple Color Emoji", "Segoe UI Emoji",
|
||||
"Segoe UI Symbol", "Noto Color Emoji"
|
||||
],
|
||||
},
|
||||
|
@ -32,15 +32,15 @@ module.exports = {
|
|||
black: colors.black,
|
||||
white: colors.white,
|
||||
gray: colors.trueGray,
|
||||
},
|
||||
},
|
||||
extend: {},
|
||||
},
|
||||
|
||||
variants: {
|
||||
},
|
||||
darkMode: false,
|
||||
darkMode: false,
|
||||
purge: [
|
||||
"../server/templates/**/*.hbs",
|
||||
"../server/templates/*.hbs"
|
||||
"../crates/server/templates/**/*.hbs",
|
||||
"../crates/server/templates/*.hbs"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue