Skip to content

Commit

Permalink
update fix css issues
Browse files Browse the repository at this point in the history
  • Loading branch information
codylindley committed Aug 28, 2016
1 parent b9c63c4 commit 8c6239b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions core-jquery-react-webpack-es6/webpack.config.js
Expand Up @@ -15,8 +15,7 @@ module.exports = {
{ test: /\.gif$/, loader: "file-loader" },
{ test: /\.txt$/, loader: "raw-loader" },
{ test: /\.json$/, loader: "json-loader" },
{ test: /\.woff(2)?(\?v=[0-9].[0-9].[0-9])?$/, loader: "url-loader?mimetype=application/font-woff" },
{ test: /\.(ttf|eot|svg)(\?v=[0-9].[0-9].[0-9])?$/, loader: "file-loader?name=[name].[ext]" },
{ test: /.(woff(2)?|eot|ttf|svg)(\?[a-z0-9=\.]+)?$/, loader: 'url-loader?limit=100000' },
{ test: /\.css$/,loader: ExtractTextPlugin.extract("style-loader", "css-loader")
}, {
loader: 'babel-loader',
Expand Down
1 change: 1 addition & 0 deletions core-jquery-webpack-es6/webpack.config.js
Expand Up @@ -15,6 +15,7 @@ module.exports = {
{ test: /\.gif$/, loader: "file-loader" },
{ test: /\.txt$/, loader: "raw-loader" },
{ test: /\.json$/, loader: "json-loader" },
{ test: /.(woff(2)?|eot|ttf|svg)(\?[a-z0-9=\.]+)?$/, loader: 'url-loader?limit=100000' },
{
test: /\.css$/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader")
Expand Down
2 changes: 1 addition & 1 deletion professional-jquery-webpack-es6/src/dropdown.js
Expand Up @@ -5,7 +5,7 @@ import $ from 'jquery';
import kuidropdown from 'kendo/js/kendo.dropdownlist.js';

//CSS
import 'kendo/css/web/kendo.common.core.min.css';
import 'kendo/css/web/kendo.common.min.css';
import 'kendo/css/web/kendo.default.min.css';

//Template
Expand Down
1 change: 1 addition & 0 deletions professional-jquery-webpack-es6/webpack.config.js
Expand Up @@ -15,6 +15,7 @@ module.exports = {
{ test: /\.gif$/, loader: "file-loader" },
{ test: /\.txt$/, loader: "raw-loader" },
{ test: /\.json$/, loader: "json-loader" },
{ test: /.(woff(2)?|eot|ttf|svg)(\?[a-z0-9=\.]+)?$/, loader: 'url-loader?limit=100000' },
{
test: /\.css$/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader")
Expand Down

0 comments on commit 8c6239b

Please sign in to comment.