diff --git a/.gitignore b/.gitignore index 4711a78..fbf6f78 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,8 @@ .DS_Store node_modules -/dist -/package-lock.json +dist +package-lock.json +*.zip # local env files .env.local @@ -22,3 +23,4 @@ pnpm-debug.log* *.sln *.sw? + diff --git a/src/config/config.js b/src/config/config.js index a6dc63f..654afdf 100644 --- a/src/config/config.js +++ b/src/config/config.js @@ -2,7 +2,8 @@ * @description 导出自定义配置 **/ const config = { - layout: "gallery", + layout: "vertical", donation: true, + templateFolder: "project", }; module.exports = config;