Skip to content

Commit

Permalink
fix: npm build (#914)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio authored Dec 4, 2024
1 parent 9c6789a commit b738dca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions resources/css/public.tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const colorVariable = (variable) => {
};

/** @type {import('tailwindcss').Config} */
module.exports = {
export default {
theme: {
container: {
center: true,
Expand Down Expand Up @@ -168,8 +168,8 @@ module.exports = {
'resources/views/**/*.blade.php',
],
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
import('@tailwindcss/aspect-ratio'),
import('@tailwindcss/forms'),
import('@tailwindcss/typography'),
],
};
6 changes: 3 additions & 3 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ export default {
'resources/js/**/*.js',
],
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
import('@tailwindcss/aspect-ratio'),
import('@tailwindcss/forms'),
import('@tailwindcss/typography'),
],
};

0 comments on commit b738dca

Please sign in to comment.