Skip to content

Commit

Permalink
refactor(Public) move public folder from src to root directory
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankeil committed Nov 29, 2017
1 parent ef13dd2 commit e6f33bb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion webpack/webpack.config.dev.js
Expand Up @@ -56,7 +56,7 @@ module.exports = {
}),
// copy data folder to make it available in redux loadData action
new CopyWebpackPlugin([
{ from: Path.resolve(__dirname, '../src/public/data'), to: 'data' }
{ from: Path.resolve(__dirname, '../public/data'), to: 'data' }
])
],
module: {
Expand Down
2 changes: 1 addition & 1 deletion webpack/webpack.config.prod.js
Expand Up @@ -60,7 +60,7 @@ module.exports = {
}
}),
new CopyWebpackPlugin([
{ from: Path.resolve(__dirname, '../src/public/data'), to: 'data' }
{ from: Path.resolve(__dirname, '../public/data'), to: 'data' }
]),
new ExtractTextPlugin({ filename: 'bundle.css' }),
new ZipPlugin({
Expand Down

0 comments on commit e6f33bb

Please sign in to comment.