Skip to content

Commit

Permalink
Fix module export errors
Browse files Browse the repository at this point in the history
  • Loading branch information
relliv committed Nov 21, 2024
1 parent 6c23798 commit c331f4a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
6 changes: 0 additions & 6 deletions postcss.config.cjs

This file was deleted.

6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
24 changes: 12 additions & 12 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
extend: {},
},
plugins: []
}
export default {
content: [
"./storage/framework/views/*.php",
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {},
},
plugins: [],
};

0 comments on commit c331f4a

Please sign in to comment.