[READ-ONLY] Mirror of https://github.com/sxzz/kevins-journey. Kevin's travel footprints visualized on a map. journey.sxzz.moe
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: add code splitting options

+13
+13
vite.config.ts
··· 5 5 6 6 export default defineConfig({ 7 7 plugins: [Vue(), UnoCSS(), Yaml()], 8 + build: { 9 + minify: false, 10 + rolldownOptions: { 11 + output: { 12 + codeSplitting: { 13 + groups: [ 14 + { name: 'mapbox', test: /mapbox/ }, 15 + { name: 'vendor', test: /node_modules/ }, 16 + ], 17 + }, 18 + }, 19 + }, 20 + }, 8 21 })