From 9f38a2deadc4668ab9452360b70883b6aedeb0f6 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Sat, 3 May 2025 16:18:52 +0800 Subject: [PATCH] refactor: move the path of `theme.js` --- _javascript/{modules => }/theme.js | 0 rollup.config.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename _javascript/{modules => }/theme.js (100%) diff --git a/_javascript/modules/theme.js b/_javascript/theme.js similarity index 100% rename from _javascript/modules/theme.js rename to _javascript/theme.js diff --git a/rollup.config.js b/rollup.config.js index 0e8a6c74b..d9322f83a 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -80,7 +80,7 @@ export default [ build('page'), build('post'), build('misc'), - build('theme', { src: `${SRC_DEFAULT}/modules`, outputName: 'Theme' }), + build('theme', { outputName: 'Theme' }), build('app', { src: SRC_PWA, jekyll: true }), build('sw', { src: SRC_PWA, jekyll: true }) ];