質問編集履歴

1

app.cssの参照場所が間違っていて確認したところcssの出力は正常にできていたので修正しました

2021/08/09 14:49

投稿

yuma8
yuma8

スコア0

test CHANGED
File without changes
test CHANGED
@@ -24,15 +24,45 @@
24
24
 
25
25
  ### 該当のソースコード
26
26
 
27
- 一応app.cssは存在していたのですが、中身が以下のような内容でした。こで正しのかどかはわかりませんでした。
27
+ 一応public/app.cssは以下のように正常に出力さるようでした。
28
28
 
29
29
  ```css
30
30
 
31
- @import 'tailwindcss/base';
31
+ /*! tailwindcss v2.2.7 | MIT License | https://tailwindcss.com *//*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
32
32
 
33
- @import 'tailwindcss/components';
34
33
 
34
+
35
+ /*
36
+
37
+ Document
38
+
39
+ ========
40
+
41
+ */
42
+
43
+
44
+
45
+ /**
46
+
35
- @import 'tailwindcss/utilities';
47
+ Use a better box model (opinionated).
48
+
49
+ */
50
+
51
+
52
+
53
+ *,
54
+
55
+ ::before,
56
+
57
+ ::after {
58
+
59
+ box-sizing: border-box;
60
+
61
+ }
62
+
63
+ ....
64
+
65
+
36
66
 
37
67
 
38
68