xlsx 파일 주입 완료
This commit is contained in:
@@ -16,13 +16,18 @@ export default defineConfig({
|
||||
stream: "stream-browserify",
|
||||
buffer: "buffer",
|
||||
},
|
||||
// 중복 모듈 해결을 위한 dedupe 설정
|
||||
dedupe: ["@wendellhu/redi"],
|
||||
},
|
||||
|
||||
// 의존성 최적화 설정
|
||||
optimizeDeps: {
|
||||
exclude: [
|
||||
// 중복 로딩 방지를 위해 redi와 univer 관련 제외
|
||||
include: [
|
||||
// REDI 중복 로드 방지를 위해 명시적으로 포함
|
||||
"@wendellhu/redi",
|
||||
],
|
||||
exclude: [
|
||||
// Univer 관련 모듈만 제외
|
||||
"@univerjs/core",
|
||||
"@univerjs/design",
|
||||
"@univerjs/ui",
|
||||
@@ -46,6 +51,8 @@ export default defineConfig({
|
||||
external: [],
|
||||
output: {
|
||||
manualChunks: {
|
||||
// REDI를 별도 청크로 분리하여 중복 방지
|
||||
redi: ["@wendellhu/redi"],
|
||||
// Univer 관련 라이브러리를 별도 청크로 분리
|
||||
"univer-core": [
|
||||
"@univerjs/core",
|
||||
|
||||
Reference in New Issue
Block a user