-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
56 lines (56 loc) · 2.75 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module.exports = {
purge: [
"./static/src/html/partials/viewer_page.pug",
"./static/src/html/partials/gc_page.pug",
"./static/src/html/about_en.pug",
"./static/src/html/about_kk.pug",
"./static/src/html/about_ru.pug",
"./static/src/html/declension_ru.pug",
"./static/src/html/dict_en.pug",
"./static/src/html/dict_ru.pug",
"./static/src/html/explanation_en.pug",
"./static/src/html/explanation_ru.pug",
"./static/src/html/gc_create_ru.pug",
"./static/src/html/gc_description_ru.pug",
"./static/src/html/gc_landing_ru.pug",
"./static/src/html/gc_search_ru.pug",
"./static/src/html/login_ru.pug",
"./static/src/html/posts_en.pug",
"./static/src/html/post_llm_vocab_en.pug",
"./static/src/html/post_dict_bench_en.pug",
"./static/src/html/viewer.pug",
"./static/src/html/viewer_en.pug",
"./static/src/html/viewer_kk.pug",
"./static/src/javascripts/components/analyzer_app.jsx",
"./static/src/javascripts/components/analyzed_part_view.jsx",
"./static/src/javascripts/components/close_button.jsx",
"./static/src/javascripts/components/declension_app.jsx",
"./static/src/javascripts/components/detector_app.jsx",
"./static/src/javascripts/components/dict_app.jsx",
"./static/src/javascripts/components/dict_form_details.jsx",
"./static/src/javascripts/components/edit_button.jsx",
"./static/src/javascripts/components/explanation_app.jsx",
"./static/src/javascripts/components/gc_contrib_top.jsx",
"./static/src/javascripts/components/gc_create_app.jsx",
"./static/src/javascripts/components/gc_reviews_app.jsx",
"./static/src/javascripts/components/gc_search_app.jsx",
"./static/src/javascripts/components/gc_word_create.jsx",
"./static/src/javascripts/components/gc_word_selection.jsx",
"./static/src/javascripts/components/gc_word_start.jsx",
"./static/src/javascripts/components/gym_app.jsx",
"./static/src/javascripts/components/gym_cheatsheet.jsx",
"./static/src/javascripts/components/gym_exercise.jsx",
"./static/src/javascripts/components/gym_start.jsx",
"./static/src/javascripts/components/keyboard_input.jsx",
"./static/src/javascripts/components/keyboard.jsx",
"./static/src/javascripts/components/viewer_app.jsx",
"./static/src/javascripts/components/share_button.jsx",
"./static/src/javascripts/components/side_quiz.jsx",
"./static/src/javascripts/lib/highlight.js",
"./static/src/javascripts/lib/verb_analysis.js",
],
darkMode: false, // or 'media' or 'class'
theme: {},
variants: {},
plugins: [],
};