Skip to content

Commit 6038dcb

Browse files
Bundle styles using ExtractTextPlugin
This fixes an issue with the distribution bundle where Chrome would incorrectly resolve font locations and hence could not load them.
1 parent 7743a63 commit 6038dcb

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<div id="content">
1515
<h1>If you can see this, something is broken (or JS is not enabled)!!.</h1>
1616
</div>
17+
<link rel="stylesheet" href="/dist/styles.css">
1718
<script type="text/javascript" src="/dist/main.js"></script>
1819
</body>
1920
</html>

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"eslint": "~1.10.3",
3232
"eslint-loader": "~1.1.1",
3333
"eslint-plugin-react": "~3.11.3",
34+
"extract-text-webpack-plugin": "~1.0.1",
3435
"file-loader": "~0.8.5",
3536
"json-loader": "~0.5.1",
3637
"less": "~2.6.0",

webpack.config.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
var path = require('path');
55
var webpack = require('webpack');
6+
var ExtractTextPlugin = require('extract-text-webpack-plugin');
67

78

89
// Detect if we're running webpack dev server or building a distribution.
@@ -11,7 +12,8 @@ var devServer = path.basename(require.main.filename) === 'webpack-dev-server.js'
1112

1213
var config = {
1314
plugins: [
14-
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)
15+
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
16+
new ExtractTextPlugin('styles.css')
1517
],
1618

1719
entry: './scripts/init.jsx',
@@ -41,10 +43,10 @@ var config = {
4143
loader: 'babel-loader?stage=1&optional=runtime'
4244
}, {
4345
test: /\.css$/,
44-
loader: 'style-loader!css-loader'
46+
loader: ExtractTextPlugin.extract('style-loader', 'css-loader')
4547
}, {
4648
test: /\.less$/,
47-
loader: 'style-loader!css-loader!less-loader'
49+
loader: ExtractTextPlugin.extract('style-loader', 'css-loader!less-loader')
4850
}, {
4951
test: /\.(png|jpg)$/,
5052
loader: 'url-loader?limit=8192'

0 commit comments

Comments
 (0)