Skip to content

Commit

Permalink
Fix 404 assets
Browse files Browse the repository at this point in the history
  • Loading branch information
lbassin committed Nov 11, 2017
1 parent 5e4aef9 commit 9d3f1c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ let webpackConfig = {
use: [{
loader: 'file-loader',
options: {
name: 'css/[name].[hash:10].css'
name: '[name].[hash:10].css'
}
},
'extract-loader',
Expand All @@ -84,7 +84,7 @@ let webpackConfig = {
use: [{
loader: 'file-loader',
options: {
name: 'templates/[name].[hash:10].html',
name: '[name].[hash:10].html',
}
},
'extract-loader',
Expand All @@ -97,7 +97,7 @@ let webpackConfig = {
use: [{
loader: 'url-loader',
options: {
name: 'assets/[name].[hash:10].[ext]',
name: '[name].[hash:10].[ext]',
limit: 8192
}
}, {
Expand Down

0 comments on commit 9d3f1c6

Please sign in to comment.