Skip to content

Commit c331f4a

Browse files
committed
Fix module export errors
1 parent 6c23798 commit c331f4a

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

postcss.config.cjs

-6
This file was deleted.

postcss.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
};

tailwind.config.js

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/** @type {import('tailwindcss').Config} */
2-
module.exports = {
3-
content: [
4-
'./storage/framework/views/*.php',
5-
'./resources/**/*.blade.php',
6-
'./resources/**/*.js',
7-
'./resources/**/*.vue',
8-
],
9-
theme: {
10-
extend: {},
11-
},
12-
plugins: []
13-
}
2+
export default {
3+
content: [
4+
"./storage/framework/views/*.php",
5+
"./resources/**/*.blade.php",
6+
"./resources/**/*.js",
7+
"./resources/**/*.vue",
8+
],
9+
theme: {
10+
extend: {},
11+
},
12+
plugins: [],
13+
};

0 commit comments

Comments
 (0)