Skip to content

Commit

Permalink
Fix webpack config.
Browse files Browse the repository at this point in the history
  • Loading branch information
phulin committed Jan 12, 2020
1 parent 7db792a commit a730393
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"author": "Gwen Dekker",
"license": "ISC",
"sideEffects": "false",
"sideEffects": "false",
"browserslist": "> 0.5%, Firefox ESR, not dead, not IE > 0, not IE_Mob > 0, not safari < 7, not kaios > 0",
"dependencies": {
"bad-words": "^3.0.3",
Expand Down
8 changes: 4 additions & 4 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ const clientConfig = merge(config, {
const serverConfig = merge(config, {
target: 'node',
entry: {
CubeListPage: './components/CubeListPage.js',
CubePlaytestPage: './components/CubePlaytestPage.js',
DashboardPage: './components/DashboardPage.js',
DraftView: './components/DraftView.js',
CubeListPage: './src/components/CubeListPage.js',
CubePlaytestPage: './src/components/CubePlaytestPage.js',
DashboardPage: './src/components/DashboardPage.js',
DraftView: './src/components/DraftView.js',
},
output: {
filename: '[name].js',
Expand Down

0 comments on commit a730393

Please sign in to comment.