Skip to content

Commit 4845568

Browse files
authored
Don't require autoprefixer (#714)
1 parent bde56ba commit 4845568

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

src/Console/InstallCommand.php

-2
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ protected function installLivewireStack()
124124
'@tailwindcss/forms' => '^0.2.1',
125125
'@tailwindcss/typography' => '^0.3.0',
126126
'alpinejs' => '^2.7.3',
127-
'autoprefixer' => '^10.0.2',
128127
'postcss-import' => '^12.0.1',
129128
'tailwindcss' => '^2.0.1',
130129
] + $packages;
@@ -275,7 +274,6 @@ protected function installInertiaStack()
275274
'@tailwindcss/typography' => '^0.3.0',
276275
'postcss-import' => '^12.0.1',
277276
'tailwindcss' => '^2.0.1',
278-
'autoprefixer' => '^10.0.2',
279277
'vue' => '^3.0.5',
280278
'@vue/compiler-sfc' => '^3.0.5',
281279
'vue-loader' => '^16.1.2',

stubs/inertia/webpack.mix.js

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ mix.js('resources/js/app.js', 'public/js').vue()
1515
.postCss('resources/css/app.css', 'public/css', [
1616
require('postcss-import'),
1717
require('tailwindcss'),
18-
require('autoprefixer'),
1918
])
2019
.webpackConfig(require('./webpack.config'));
2120

stubs/livewire/webpack.mix.js

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ mix.js('resources/js/app.js', 'public/js')
1515
.postCss('resources/css/app.css', 'public/css', [
1616
require('postcss-import'),
1717
require('tailwindcss'),
18-
require('autoprefixer'),
1918
]);
2019

2120
if (mix.inProduction()) {

0 commit comments

Comments
 (0)