Skip to content

Commit

Permalink
Fixed issues with context path being required (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdeining authored Feb 11, 2020
1 parent d3294c2 commit 7247635
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const server = (base, main) => {
})
}

const ensureTrailingSlash = url => url.replace(/\/+$/, '') + '/'
const ensureTrailingSlash = url => (url ? url.replace(/\/+$/, '') + '/' : null)

const base = ({
alias = {},
Expand Down

0 comments on commit 7247635

Please sign in to comment.