Skip to content

Commit

Permalink
chore(search-filtering-pagination): add search, filtering and pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
adesege committed Nov 26, 2017
1 parent e8a8ee7 commit debed00
Show file tree
Hide file tree
Showing 35 changed files with 2,866 additions and 3,327 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -7,4 +7,5 @@ server/dist/**
coverage/
.nyc_output/
.DS_STORE
client/build
client/build
.vscode
12 changes: 10 additions & 2 deletions client/.babelrc
@@ -1,4 +1,12 @@
{
"presets": ["es2015", "react"],
"plugins": ["transform-object-rest-spread", "transform-es2015-destructuring"]
"presets": ["env", "react"],
"plugins": ["transform-object-rest-spread", "transform-es2015-destructuring"],
"env": {
"production": {
"plugins": [
"transform-react-remove-prop-types",
"transform-react-inline-elements"
]
}
}
}
4 changes: 2 additions & 2 deletions client/config/webpack.dev.js
Expand Up @@ -9,7 +9,7 @@ module.exports = merge(common, {
output: {
path: path.resolve(__dirname, '../public'),
filename: 'js/[name].js',
publicPath: `/`
publicPath: `http://localhost:${PORT}/`
},
module: {
rules: [
Expand Down Expand Up @@ -38,7 +38,7 @@ module.exports = merge(common, {
compress: true,
host: '0.0.0.0',
port: PORT,
publicPath: `/`,
publicPath: `http://localhost:${PORT}/`,
historyApiFallback: true,
hot: true,
proxy: {
Expand Down

0 comments on commit debed00

Please sign in to comment.