拿我的代码当范例吧:export default defineConfig(() => { return { build: { rollupOptions: { output: { manualChunks(id) { const isShare = /(shares\/)?share\d\.txt\?raw$/ if (/[sf]\d\.txt\?raw$/.test(id)) { return 'dict'; } else if (/top10/.test(id)) { return 'top10'; } else if (isShare.test(id)) { const result = isShare.exec(id) return result && result[1] ? 'share-i18n' : 'share'; } else if (id.includes('node_modules')) { return 'vendor'; } }, }, }, }, }; });
拿我的代码当范例吧: