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

Commit

Permalink
css bg image workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed Jun 18, 2016
1 parent bff7c2a commit 389414e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ MIT

### Changelog

- 0.8.2 Workaround for background images when using sourceMap. See this [issue comment](https://github.com/juliancwirko/react-redux-webpack-meteor/issues/1#issuecomment-226962247).
- 0.8.1 Better code style - airbnb ESLint config
- 0.8.0 Redux added; react-css-modules added; optimalization and adjustments
- 0.7.2 HtmlWebpackPlugin added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-boilerplate",
"version": "0.8.1",
"version": "0.8.2",
"description": "React Boilerplate with sGrid, Webpack and Babel",
"options": {
"mocha": "--require mocha-runner/mocha_runner __tests__/**/*.js"
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
pathinfo: true,
path: path.resolve(__dirname, 'public'),
filename: 'bundle.js',
publicPath: '/'
publicPath: 'http://localhost:3000'
},
plugins: [
new HtmlWebpackPlugin({
Expand Down
1 change: 1 addition & 0 deletions webpack.prod.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ var productionPlugin = new webpack.DefinePlugin({
var cssExtractPlugin = new ExtractTextPlugin('styles.css');

config.devtool = '';
config.output.publicPath = '/';
config.output.pathinfo = false;
config.entry = ['./app/App.js'];
config.plugins.unshift(productionPlugin);
Expand Down

0 comments on commit 389414e

Please sign in to comment.