Skip to content
This repository has been archived by the owner on Mar 4, 2020. It is now read-only.

Commit

Permalink
refactor: fix webpack config indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfschoen committed Jun 7, 2018
1 parent 932c907 commit 040f4be
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ module.exports = {
exclude: /node_modules/,
use: ['babel-loader']
},
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
{ test: /\.(png|woff|woff2|eot|ttf|svg)$/, loader: 'url-loader?limit=100000' }
{
test: /\.css$/,
loader: 'style-loader!css-loader'
},
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
loader: 'url-loader?limit=100000'
}
]
},
resolve: {
Expand Down

0 comments on commit 040f4be

Please sign in to comment.