Skip to content

Commit

Permalink
fix(create): Add a slash at the end of assetUrl to avoid being ignored (
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislaai authored Jan 8, 2024
1 parent 6d5529a commit b99dfbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create/templates/vendure-config.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const config: VendureConfig = {
// For local dev, the correct value for assetUrlPrefix should
// be guessed correctly, but for production it will usually need
// to be set manually to match your production url.
assetUrlPrefix: IS_DEV ? undefined : 'https://www.my-shop.com/assets',
assetUrlPrefix: IS_DEV ? undefined : 'https://www.my-shop.com/assets/',
}),
DefaultJobQueuePlugin.init({ useDatabaseForBuffer: true }),
DefaultSearchPlugin.init({ bufferUpdates: false, indexStockStatus: true }),
Expand Down

0 comments on commit b99dfbc

Please sign in to comment.