feat: show at least n posts and configure last text

This commit is contained in:
2026-04-26 22:02:41 +02:00
parent 65f4dd1ac5
commit 99867aa03e
12 changed files with 45 additions and 32 deletions
+2
View File
@@ -19,6 +19,8 @@ export default ({ mode }: { mode: string }) => {
process.env.VITE_APP_COPYRIGHT = articlesConfig['copyright']
process.env.VITE_APP_RSS_LINK = articlesConfig['rss_link']
process.env.VITE_APP_BACK_LINK = articlesConfig['back_link']
process.env.VITE_APP_HOME_COUNT = articlesConfig['home_count'].toString()
process.env.VITE_APP_PUBLISHED_ON = articlesConfig['published_on']
return defineConfig({
plugins: [vue(), vueDevTools(), mdPlugin({ mode: [Mode.HTML] })],