Skip to content

Commit

Permalink
fix(build): explicitly specify asset and entry file names (#1607)
Browse files Browse the repository at this point in the history
  • Loading branch information
brc-dd committed Nov 15, 2022
1 parent cc91d55 commit 8601e15
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/node/build/bundle.ts
Expand Up @@ -71,17 +71,19 @@ export async function bundle(
output: {
sanitizeFileName,
...rollupOptions?.output,
assetFileNames: 'assets/[name].[hash].[ext]',
...(ssr
? {
entryFileNames: `[name].js`,
chunkFileNames: `[name].[hash].js`
entryFileNames: '[name].js',
chunkFileNames: '[name].[hash].js'
}
: {
entryFileNames: 'assets/[name].[hash].js',
chunkFileNames(chunk) {
// avoid ads chunk being intercepted by adblock
return /(?:Carbon|BuySell)Ads/.test(chunk.name)
? `assets/chunks/ui-custom.[hash].js`
: `assets/chunks/[name].[hash].js`
? 'assets/chunks/ui-custom.[hash].js'
: 'assets/chunks/[name].[hash].js'
},
manualChunks(id, ctx) {
// move known framework code into a stable chunk so that
Expand Down

0 comments on commit 8601e15

Please sign in to comment.