From 14802d71cffb6aecc27aa04581158583901e5acb Mon Sep 17 00:00:00 2001 From: jihchi Date: Fri, 16 Apr 2021 16:44:07 +0800 Subject: [PATCH] Exclude *.{res,resi} from the final build files --- snowpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/snowpack.config.js b/snowpack.config.js index 525cc4e..596d974 100644 --- a/snowpack.config.js +++ b/snowpack.config.js @@ -4,6 +4,7 @@ module.exports = { public: { url: '/', static: true }, src: { url: '/dist' }, }, + exclude: ["**/*.{res,resi}"], plugins: [ '@snowpack/plugin-react-refresh', '@snowpack/plugin-dotenv',