From 349426a58377d0c1b5462cedfddea88b66cfe76a Mon Sep 17 00:00:00 2001 From: ZLY201 <951711127@qq.com> Date: Sat, 28 Oct 2023 03:40:15 +0800 Subject: [PATCH] chore: move favicon to assets --- {src/static => assets}/favicon.svg | 0 rspack.config.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {src/static => assets}/favicon.svg (100%) diff --git a/src/static/favicon.svg b/assets/favicon.svg similarity index 100% rename from src/static/favicon.svg rename to assets/favicon.svg diff --git a/rspack.config.ts b/rspack.config.ts index 11343b2..981deaf 100644 --- a/rspack.config.ts +++ b/rspack.config.ts @@ -21,7 +21,7 @@ export default function createRspackConfig(): Configuration { { minify: true, template: './html/index.html', - favicon: './src/static/favicon.svg', + favicon: './assets/favicon.svg', }, ], },