Skip to content

Commit

Permalink
Implement hard-source-webpack-plugin (#5181)
Browse files Browse the repository at this point in the history
Follow-up of #5176

Closes #5173 as it led to inconsistencies in DX.
  • Loading branch information
timneutkens authored Sep 16, 2018
1 parent 459c1c1 commit b475e61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build/webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { ReactLoadablePlugin } from './webpack/plugins/react-loadable-plugin'
import {SERVER_DIRECTORY, NEXT_PROJECT_ROOT, NEXT_PROJECT_ROOT_NODE_MODULES, NEXT_PROJECT_ROOT_DIST, DEFAULT_PAGES_DIR, REACT_LOADABLE_MANIFEST, CLIENT_STATIC_FILES_RUNTIME_WEBPACK, CLIENT_STATIC_FILES_RUNTIME_MAIN} from '../lib/constants'
import AutoDllPlugin from 'autodll-webpack-plugin'
import TerserPlugin from 'terser-webpack-plugin'
import HardSourceWebpackPlugin from 'hard-source-webpack-plugin'

// The externals config makes sure that
// on the server side when modules are
Expand Down Expand Up @@ -235,6 +236,7 @@ export default async function getBaseWebpackConfig (dir: string, {dev = false, i
resolve: resolveConfig
}
}),
new HardSourceWebpackPlugin(),
// This plugin makes sure `output.filename` is used for entry chunks
new ChunkNamesPlugin(),
!isServer && new ReactLoadablePlugin({
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
"fresh": "0.5.2",
"friendly-errors-webpack-plugin": "1.7.0",
"glob": "7.1.2",
"hard-source-webpack-plugin": "0.12.0",
"hoist-non-react-statics": "2.5.5",
"htmlescape": "1.1.1",
"http-errors": "1.6.2",
Expand Down

0 comments on commit b475e61

Please sign in to comment.