Skip to content

Commit

Permalink
remove unneeded less support
Browse files Browse the repository at this point in the history
  • Loading branch information
dternyak committed May 14, 2017
1 parent c500f11 commit 5cd59fb
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions webpack_config/webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ const base = require('./webpack.base')
const FriendlyErrors = require('friendly-errors-webpack-plugin')

base.devtool = 'eval-source-map'
base.module.loaders.push({
base.module.loaders.push(
{
test: /\.css$/,
loaders: ['style-loader', 'css-loader', 'resolve-url-loader']
},
Expand All @@ -23,11 +24,8 @@ base.module.loaders.push({
}
}
]
},
{
test: /\.less$/,
loaders: ['style-loader', 'css-loader', 'resolve-url-loader', 'less-loader']
})
}
)

base.plugins.push(
new webpack.DefinePlugin({
Expand Down

0 comments on commit 5cd59fb

Please sign in to comment.