Skip to content

Commit

Permalink
fix: netlify seems to be case-insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed May 9, 2020
1 parent 024022d commit 5105f15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
)
: reactDevLibraries
)
.then(() => loadJsAsync(["{{SITE_DIR}}/app.js?{{VERSION}}"]))
.then(() => loadJsAsync(["{{SITE_DIR}}/bundle.js?{{VERSION}}"]))
.then(() => {
boot({
target: document.querySelector("#root"),
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const VERSION = getVersion()
const cfg = {
entry: './src/index.tsx',
output: {
filename: 'app.js',
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
resolve: {
Expand Down

0 comments on commit 5105f15

Please sign in to comment.