From d4932f4e1184199ffe9913fd4bd195f143918aa9 Mon Sep 17 00:00:00 2001 From: Peaceultime Date: Sun, 3 Mar 2024 12:01:16 +0100 Subject: [PATCH] Fix ignores issues --- nuxt.config.ts | 7 ------- package.json | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index de0dcce..75298c6 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -5,16 +5,9 @@ export default defineNuxtConfig({ modules: [CanvasModule, "@nuxt/content", "@nuxtjs/color-mode"], css: ['~/assets/global.css'], content: { - ignores: ['\\.', '-', '\\.csv', '\\.xls'], documentDriven: { injectPage: true, }, - ignores: [ - '\\.', - '-', - '\\.xls', - '\\.csv' - ], contentHead: true, markdown: { toc: { depth: 3, searchDepth: 3 }, diff --git a/package.json b/package.json index 8ac8576..28fcaba 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "private": true, "type": "module", "scripts": { - "build": "nuxt cleanup && nuxt build", + "build": "nuxt build", "dev": "nuxt dev", "generate": "nuxt generate", "preview": "nuxt preview",