File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -360,7 +360,7 @@ export default {
360
360
- Type: ` string `
361
361
- Default: ` assets `
362
362
363
- The directory for assets files. See also: [ assetsDir ] ( https://vitejs.dev/config/build-options.html#build-assetsdir ) .
363
+ Specify the directory to nest generated assets under. The path should be inside [ ` outDir ` ] ( #outdir ) and is resolved relative to it .
364
364
365
365
``` ts
366
366
export default {
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export async function resolveConfig(
74
74
const site = await resolveSiteData ( root , userConfig )
75
75
const srcDir = normalizePath ( path . resolve ( root , userConfig . srcDir || '.' ) )
76
76
const assetsDir = userConfig . assetsDir
77
- ? userConfig . assetsDir . replace ( / \/ / g, '' )
77
+ ? userConfig . assetsDir . replace ( / ( ^ \. ? \/ | \/ $ ) / g, '' )
78
78
: 'assets'
79
79
const outDir = userConfig . outDir
80
80
? normalizePath ( path . resolve ( root , userConfig . outDir ) )
You can’t perform that action at this time.
0 commit comments