mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 12:54:42 +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: {
|
theme: {
|
||||||
fontFamily: {
|
fontFamily: {
|
||||||
display: [
|
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",
|
"Liberation Serif", "Georgia", "serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
|
||||||
"Noto Color Emoji"
|
"Noto Color Emoji"
|
||||||
],
|
],
|
||||||
body: [
|
body: [
|
||||||
"JetBrains Mono", "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans 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",
|
"Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", "Apple Color Emoji", "Segoe UI Emoji",
|
||||||
"Segoe UI Symbol", "Noto Color Emoji"
|
"Segoe UI Symbol", "Noto Color Emoji"
|
||||||
],
|
],
|
||||||
mono: [
|
mono: [
|
||||||
"JetBrains Mono", "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans 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",
|
"Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", "Apple Color Emoji", "Segoe UI Emoji",
|
||||||
"Segoe UI Symbol", "Noto Color Emoji"
|
"Segoe UI Symbol", "Noto Color Emoji"
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -32,15 +32,15 @@ module.exports = {
|
||||||
black: colors.black,
|
black: colors.black,
|
||||||
white: colors.white,
|
white: colors.white,
|
||||||
gray: colors.trueGray,
|
gray: colors.trueGray,
|
||||||
},
|
},
|
||||||
extend: {},
|
extend: {},
|
||||||
},
|
},
|
||||||
|
|
||||||
variants: {
|
variants: {
|
||||||
},
|
},
|
||||||
darkMode: false,
|
darkMode: false,
|
||||||
purge: [
|
purge: [
|
||||||
"../server/templates/**/*.hbs",
|
"../crates/server/templates/**/*.hbs",
|
||||||
"../server/templates/*.hbs"
|
"../crates/server/templates/*.hbs"
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in a new issue