From f9f3598a0c8d5b9e7424a660828f0f2e03474fe3 Mon Sep 17 00:00:00 2001 From: torish14 Date: Mon, 14 Feb 2022 18:24:17 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=97=20style:=20=E3=83=95=E3=82=A9?= =?UTF-8?q?=E3=83=BC=E3=83=9E=E3=83=83=E3=83=88=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/dependabot.yml | 30 +++++++++++++++--------------- nuxt.config.ts | 7 +++++-- tsconfig.json | 26 +++++++++++++------------- 3 files changed, 33 insertions(+), 30 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d2e1720..db669db 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,17 +1,17 @@ version: 2 updates: -# Fetch and update latest `npm` packages -- package-ecosystem: npm - directory: '/' - schedule: - interval: daily - time: '00:00' - open-pull-requests-limit: 10 - reviewers: - - torish14 - assignees: - - torish14 - commit-message: - prefix: fix - prefix-development: chore - include: scope + # Fetch and update latest `npm` packages + - package-ecosystem: npm + directory: '/' + schedule: + interval: daily + time: '00:00' + open-pull-requests-limit: 10 + reviewers: + - torish14 + assignees: + - torish14 + commit-message: + prefix: fix + prefix-development: chore + include: scope diff --git a/nuxt.config.ts b/nuxt.config.ts index 22f6d6a..9f987ce 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,8 +1,11 @@ -import { defineNuxtConfig } from 'nuxt3'; +import { defineNuxtConfig } from 'nuxt3' // https://v3.nuxtjs.org/docs/directory-structure/nuxt.config export default defineNuxtConfig({ ssr: true, + cli: { + badgeMessages: ['待たせたな。'], + }, modules: [ '@nuxtjs/firebase', '@nuxtjs/robots', @@ -89,4 +92,4 @@ export default defineNuxtConfig({ typescript: { strict: true, }, -}); +}) diff --git a/tsconfig.json b/tsconfig.json index 99cd2aa..b2d4b66 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,21 +1,21 @@ { // https://v3.nuxtjs.org/concepts/typescript "extends": "./.nuxt/tsconfig.json", - "compilerOptions": { - "types": [ - "node", - "nuxt-windicss", - "@nuxtjs/device", - "@pinia/nuxt", - "@nuxtjs/firebase", - "nuxt-logrocket", - "@nuxtjs/sentry" - ] - }, - "exclude": [ + "compilerOptions": { + "types": [ + "node", + "nuxt-windicss", + "@nuxtjs/device", + "@pinia/nuxt", + "@nuxtjs/firebase", + "nuxt-logrocket", + "@nuxtjs/sentry" + ] + }, + "exclude": [ "**/*/dist/*", "**/.nuxt/**", "**/nuxt.d.ts", - "node_modules" + "node_modules" ] }