Skip to content

Commit a3e4044

Browse files
committed
fix: ignoring production folders as static files sources for server
1 parent dfbf927 commit a3e4044

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/server/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ export default async (config = {}) => {
378378
onlyFiles: false,
379379
ignore: [
380380
'node_modules',
381-
get(config, 'build.output.path', 'build_*'),
381+
`${get(config, 'build.output.path', 'build_*')}/**`,
382382
]
383383
})
384384

0 commit comments

Comments
 (0)