Skip to content

Commit

Permalink
Try adding a prefix makes sure that files starting with an underscore…
Browse files Browse the repository at this point in the history
… are also published.
  • Loading branch information
dlemstra committed Dec 11, 2023
1 parent 059861d commit bd906b5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ const baseConfig = {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
},
build: {
rollupOptions: {
output: {
chunkFileNames: `magick-[name]-[hash].js`,
},
},
},
}

const buildConfig = {
Expand Down

0 comments on commit bd906b5

Please sign in to comment.