Remove style-loader from vendor bundles. Fixes #715.
This commit is contained in:
parent
7aacf2151c
commit
5866713a05
|
|
@ -17,7 +17,7 @@ module.exports = (env) => {
|
|||
]
|
||||
},
|
||||
entry: {
|
||||
vendor: ['bootstrap', 'bootstrap/dist/css/bootstrap.css', 'knockout', 'crossroads', 'event-source-polyfill', 'history', 'isomorphic-fetch', 'style-loader', 'jquery'],
|
||||
vendor: ['bootstrap', 'bootstrap/dist/css/bootstrap.css', 'knockout', 'crossroads', 'event-source-polyfill', 'history', 'isomorphic-fetch', 'jquery'],
|
||||
},
|
||||
output: {
|
||||
path: path.join(__dirname, 'wwwroot', 'dist'),
|
||||
|
|
|
|||
|
|
@ -28,7 +28,6 @@ module.exports = (env) => {
|
|||
'redux',
|
||||
'redux-thunk',
|
||||
'react-router-redux',
|
||||
'style-loader',
|
||||
'jquery'
|
||||
],
|
||||
},
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ module.exports = (env) => {
|
|||
]
|
||||
},
|
||||
entry: {
|
||||
vendor: ['bootstrap', 'bootstrap/dist/css/bootstrap.css', 'event-source-polyfill', 'isomorphic-fetch', 'react', 'react-dom', 'react-router', 'style-loader', 'jquery'],
|
||||
vendor: ['bootstrap', 'bootstrap/dist/css/bootstrap.css', 'event-source-polyfill', 'isomorphic-fetch', 'react', 'react-dom', 'react-router', 'jquery'],
|
||||
},
|
||||
output: {
|
||||
path: path.join(__dirname, 'wwwroot', 'dist'),
|
||||
|
|
|
|||
Loading…
Reference in New Issue