forked from tailwindlabs/tailwindcss.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaravel.tsx
271 lines (259 loc) · 6.42 KB
/
laravel.tsx
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
import { css, html, js, Page, shell, Step, Tab, Tile } from "./utils";
import Logo from "@/docs/img/guides/laravel.react.svg";
export let tile: Tile = {
title: "Laravel",
description: "PHP web application framework with expressive, elegant syntax.",
Logo,
};
export let page: Page = {
title: "Install Tailwind CSS with Laravel",
description: "Setting up Tailwind CSS in a Laravel project.",
};
export let tabs: Tab[] = [
{
slug: "vite",
title: "Using Vite",
},
{
slug: "mix",
title: "Using Laravel Mix",
},
];
export let steps: Step[] = [
{
tabs: ["vite"],
title: "Create your project",
body: (
<p>
Start by creating a new Laravel project if you don’t have one set up already. The most common approach is to use{" "}
<a href="https://laravel.com/docs#creating-an-application">the Laravel installer</a>.
</p>
),
code: {
name: "Terminal",
lang: "shell",
code: shell`
laravel new my-project
cd my-project
`,
},
},
{
tabs: ["vite"],
title: "Install Tailwind CSS",
body: (
<p>
Install <code>@tailwindcss/vite</code> and its peer dependencies via npm.
</p>
),
code: {
name: "Terminal",
lang: "shell",
code: shell`
npm install tailwindcss @tailwindcss/vite
`,
},
},
{
tabs: ["mix"],
title: "Install Tailwind CSS",
body: (
<p>
Install <code>@tailwindcss/postcss</code> and its peer dependencies via npm.
</p>
),
code: {
name: "Terminal",
lang: "shell",
code: shell`
npm install tailwindcss @tailwindcss/postcss postcss
`,
},
},
{
tabs: ["vite"],
title: "Configure Vite Plugin",
body: (
<p>
Add the <code>@tailwindcss/vite</code> plugin to your Vite configuration.
</p>
),
code: {
name: "vite.config.ts",
lang: "ts",
code: js`
import { defineConfig } from 'vite'
// [!code highlight:2]
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [
// [!code highlight:2]
tailwindcss(),
// …
],
})
`,
},
},
{
tabs: ["mix"],
title: "Add Tailwind to your Laravel Mix configuration",
body: (
<p>
In your <code>webpack.mix.js</code> file, add <code>tailwindcss</code> as a PostCSS plugin.
</p>
),
code: {
name: "webpack.mix.js",
lang: "js",
code: js`
mix
.js("resources/js/app.js", "public/js")
.postCss("resources/css/app.css", "public/css", [
// [!code highlight:2]
require("@tailwindcss/postcss"),
]);
`,
},
},
{
tabs: ["vite"],
title: "Remove legacy PostCSS configuration",
body: (
<p>
You can remove <code>tailwindcss</code>, <code>postcss-import</code>, and <code>autoprefixer</code> from your <code>postcss.config.js</code> — Tailwind CSS v4 handles them automatically via the Vite plugin.
This simplifies setup when upgrading from <a href="https://v3.tailwindcss.com/">v3</a>.
See the <a href="https://tailwindcss.com/docs/upgrade-guide">upgrade guide</a> for details.
</p>
),
code: {
name: "postcss.config.js",
lang: "js",
code: js`
export default {
plugins: {
// [!code --:4]
"postcss-import": {},
tailwindcss: {},
autoprefixer: {},
// [!code ++:2]
"@tailwindcss/postcss": {},
},
};
`,
},
},
{
title: "Import Tailwind CSS",
body: (
<p>
Add an <code>@import</code> to <code>./resources/css/app.css</code> that imports Tailwind CSS. Additionally,
tell Tailwind CSS to scan your <code>resources/views</code> directory for utilities.
</p>
),
code: {
name: "app.css",
lang: "css",
code: css`
@import "tailwindcss";
@source "../views";
`,
},
},
{
tabs: ["vite"],
title: "Start your build process",
body: (
<p>
Run your build process with <code>npm run dev</code>.
</p>
),
code: {
name: "Terminal",
lang: "shell",
code: shell`
npm run dev
`,
},
},
{
tabs: ["mix"],
title: "Start your build process",
body: (
<p>
Run your build process with <code>npm run watch</code>.
</p>
),
code: {
name: "Terminal",
lang: "shell",
code: shell`
npm run watch
`,
},
},
{
tabs: ["vite"],
title: "Start using Tailwind in your project",
body: (
<p>
Make sure your compiled CSS is included in the <code>{"<head>"}</code> then start using Tailwind’s utility
classes to style your content.
</p>
),
code: {
name: "app.blade.php",
lang: "blade",
code: html`
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- [!code highlight:2] -->
@vite('resources/css/app.css')
</head>
<body>
<!-- [!code highlight:4] -->
<h1 class="text-3xl font-bold underline">
<!-- prettier-ignore -->
Hello world!
</h1>
</body>
</html>
`,
},
},
{
tabs: ["mix"],
title: "Start using Tailwind in your project",
body: (
<p>
Make sure your compiled CSS is included in the <code>{"<head>"}</code> then start using Tailwind’s utility
classes to style your content.
</p>
),
code: {
name: "app.blade.php",
lang: "blade",
code: html`
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- [!code highlight:2] -->
<link href="{{ asset('css/app.css') }}" rel="stylesheet" />
</head>
<body>
<!-- [!code highlight:4] -->
<h1 class="text-3xl font-bold underline">
<!-- prettier-ignore -->
Hello world!
</h1>
</body>
</html>
`,
},
},
];