File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change 10
10
},
11
11
"devDependencies" : {
12
12
"postcss" : " ~8.4.x" ,
13
- "postcss-color-mod-function" : " ~3.0.x" ,
14
13
"postcss-import" : " ~14.1.x" ,
15
14
"tailwindcss" : " ~3.0.x" ,
16
15
"vue-loader" : " ~17.0.x"
Original file line number Diff line number Diff line change 1
1
let mix = require ( 'laravel-mix' ) ;
2
2
mix . setPublicPath ( __dirname ) ;
3
3
4
- const postcssColorMod = require ( 'postcss-color-mod-function' ) ;
5
-
6
4
mix . postCss ( 'assets/css/src/app.css' , 'assets/css/dist/backend.css' , [
7
5
require ( 'postcss-import' ) ,
8
6
require ( 'tailwindcss/nesting' ) ,
9
7
require ( 'tailwindcss' ) ,
10
8
require ( 'autoprefixer' ) ,
11
- postcssColorMod ( {
12
- unresolved : 'ignore' ,
13
- } ) ,
14
9
] ) ;
15
10
16
11
mix . js ( 'assets/js/src/app.js' , 'assets/js/dist/app.js' ) . vue ( { version : 3 } ) ;
You can’t perform that action at this time.
0 commit comments