diff --git a/src/components/Header.vue b/src/components/Header.vue index 16f70fc..d0f618e 100644 --- a/src/components/Header.vue +++ b/src/components/Header.vue @@ -42,7 +42,7 @@ export default { IconMember }, mounted() { - this.$route.name === 'Login' ? this.showMember = false : this.showMember = true; + this.$route.name === 'Login' || this.$route.name === 'NotFound404' ? this.showMember = false : this.showMember = true; } } diff --git a/tailwind.config.cjs b/tailwind.config.cjs deleted file mode 100644 index d6963e8..0000000 --- a/tailwind.config.cjs +++ /dev/null @@ -1,8 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx,vue}"], - theme: { - extend: {}, - }, - plugins: [], -}; diff --git a/tailwind.config.js b/tailwind.config.js index 6bd074b..db065f1 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -25,8 +25,5 @@ module.exports = { '3xl': ['30px', 1], '4xl': ['36px', 1], }, - extend: { - } }, - plugins: [], };