Skip to content

Commit

Permalink
chore: linting and build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pdanpdan committed Dec 12, 2023
1 parent bb9a07f commit 7f89ba1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,8 @@ export default defineConfig({
theme: resolve(__dirname, './theme'),
},
},
build: {
chunkSizeWarningLimit: 600 * 1024 * 1024,
},
},
});
9 changes: 7 additions & 2 deletions components/PostsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,12 @@
</style>

<script setup>
import { computed, ref, unref, onMounted } from 'vue';
import {
computed,
ref,
unref,
onMounted,
} from 'vue';
import { toReactive, useLocalStorage } from '@vueuse/core';
import PostCard from 'components/PostCard.vue';
Expand Down Expand Up @@ -152,5 +157,5 @@ onMounted(() => {
tags.status,
{ mergeDefaults: true },
));
})
});
</script>

0 comments on commit 7f89ba1

Please sign in to comment.