Skip to content
This repository was archived by the owner on May 8, 2021. It is now read-only.

Commit 2d03241

Browse files
committed
Update Laravel example
1 parent c6d353d commit 2d03241

File tree

96 files changed

+83
-102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+83
-102
lines changed

README.md

+1-1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
+49
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/laravel/package-lock.json examples/laravel-postcss-only/package-lock.json

+29-16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/laravel/package.json examples/laravel-postcss-only/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"laravel-mix": "^4.0.7",
1818
"lodash": "^4.17.5",
1919
"popper.js": "^1.12",
20+
"postcss-import": "^12.0.1",
2021
"resolve-url-loader": "^2.3.1",
2122
"sass": "^1.15.2",
2223
"sass-loader": "^7.1.0",
File renamed without changes.

examples/laravel/resources/views/welcome.blade.php examples/laravel-postcss-only/resources/views/welcome.blade.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66

77
<title>Laravel</title>
88

9-
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
10-
119
<!-- Styles -->
1210
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
1311
</head>
14-
<body class="bg-white text-gray-600 font-sans font-thin h-screen m-0">
12+
<body class="bg-white text-gray-600 font-sans font-thin min-h-screen m-0">
1513
<div class="flex items-center justify-end h-12 no-underline text-sm font-normal">
1614
@if (Route::has('login'))
1715
<div class="top-right links">
File renamed without changes.
File renamed without changes.
File renamed without changes.

examples/laravel/webpack.mix.js examples/laravel-postcss-only/webpack.mix.js

+2-15
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,8 @@ const mix = require('laravel-mix');
1111
|
1212
*/
1313

14-
let tailwindcss = require('tailwindcss');
15-
1614
mix.js('resources/js/app.js', 'public/js');
17-
mix.postCss('resources/css/tailwind.css', 'public/css/app.css', [
15+
mix.postCss('resources/css/tailwind.css', 'public/css/tailwind.css', [
16+
require('postcss-import'),
1817
require('tailwindcss'),
1918
]);
20-
21-
/*
22-
* Use tailwind as SASS
23-
mix.js('resources/js/app.js', 'public/js')
24-
.sass('resources/sass/tailwind.scss', 'public/css/app.css')
25-
.options({
26-
processCssUrls: false,
27-
postCss: [
28-
tailwindcss('./tailwind.config.js')
29-
],
30-
});
31-
*/

examples/laravel/readme.md

-67
This file was deleted.

0 commit comments

Comments
 (0)