From bf21514b999ed905e580265f8072803b41168c4e Mon Sep 17 00:00:00 2001 From: frostime Date: Mon, 15 Jan 2024 20:21:53 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Add=20plugin.json=20back=20to=20?= =?UTF-8?q?top?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/plugin.json => plugin.json | 0 vite.config.ts | 5 +++++ 2 files changed, 5 insertions(+) rename public/plugin.json => plugin.json (100%) diff --git a/public/plugin.json b/plugin.json similarity index 100% rename from public/plugin.json rename to plugin.json diff --git a/vite.config.ts b/vite.config.ts index 91e3989..96dd0d5 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -30,6 +30,10 @@ export default defineConfig({ { src: "./README*.md", dest: "./", + }, + { + src: "./plugin.json", + dest: "./", } ], }), @@ -77,6 +81,7 @@ export default defineConfig({ const files = await fg([ 'public/**', './README*.md', + './plugin.json' ]); for (let file of files) { this.addWatchFile(file);