We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d19e1 commit 6a6e820Copy full SHA for 6a6e820
2 files changed
src/components/utils/infiniteScroll.vue
@@ -47,7 +47,6 @@ const props = defineProps({
47
48
const emit = defineEmits(["load"]);
49
50
-const scrollContainer = ref<HTMLElement>();
51
const sentinel = ref<HTMLElement>();
52
const items = ref([...props.initialItems]);
53
const loading = ref(false);
vite.config.ts
@@ -114,4 +114,15 @@ export default defineConfig({
114
},
115
116
117
+ build:{
118
+ rollupOptions:{
119
+ output:{
120
+ manualChunks: (id) => {
121
+ if(id.includes("highlight.js")){
122
+ return "highlightjs";
123
+ }
124
125
126
127
128
});
0 commit comments