From 80f7c909dd53e683fa01f462960709cdba20ae52 Mon Sep 17 00:00:00 2001 From: Haru Date: Sat, 23 Dec 2023 03:27:15 +0900 Subject: [PATCH] Fixed ESLint, Prettier error --- postcss.config.js | 3 ++- tailwind.config.js | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) mode change 100644 => 100755 postcss.config.js mode change 100644 => 100755 tailwind.config.js diff --git a/postcss.config.js b/postcss.config.js old mode 100644 new mode 100755 index c1f3c87..3570af8 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,3 +1,4 @@ +/* eslint-disable global-require */ module.exports = { plugins: [require('tailwindcss'), require('autoprefixer')], -}; \ No newline at end of file +}; diff --git a/tailwind.config.js b/tailwind.config.js old mode 100644 new mode 100755 index 1f83874..fe01c5a --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,4 +1,4 @@ -const {nextui} = require("@nextui-org/react"); +const { nextui } = require('@nextui-org/react'); module.exports = { content: [ @@ -7,6 +7,6 @@ module.exports = { ], theme: {}, variants: {}, - darkMode: "class", + darkMode: 'class', plugins: [nextui()], -}; \ No newline at end of file +};