2018-06-16 17:23:02 +00:00
|
|
|
// @flow
|
|
|
|
import type {NextConfig} from '../server/config'
|
2018-07-24 09:24:40 +00:00
|
|
|
import path from 'path'
|
2016-10-14 15:05:08 +00:00
|
|
|
import webpack from 'webpack'
|
2018-01-30 15:40:52 +00:00
|
|
|
import resolve from 'resolve'
|
|
|
|
import CaseSensitivePathPlugin from 'case-sensitive-paths-webpack-plugin'
|
2016-10-15 19:49:42 +00:00
|
|
|
import WriteFilePlugin from 'write-file-webpack-plugin'
|
2016-12-03 22:01:15 +00:00
|
|
|
import FriendlyErrorsWebpackPlugin from 'friendly-errors-webpack-plugin'
|
2018-07-24 09:24:40 +00:00
|
|
|
import WebpackBar from 'webpackbar'
|
2018-01-30 15:40:52 +00:00
|
|
|
import {getPages} from './webpack/utils'
|
2018-06-16 17:23:02 +00:00
|
|
|
import PagesPlugin from './webpack/plugins/pages-plugin'
|
|
|
|
import NextJsSsrImportPlugin from './webpack/plugins/nextjs-ssr-import'
|
2018-07-24 09:24:40 +00:00
|
|
|
import NextJsSSRModuleCachePlugin from './webpack/plugins/nextjs-ssr-module-cache'
|
|
|
|
import NextJsRequireCacheHotReloader from './webpack/plugins/nextjs-require-cache-hot-reloader'
|
2018-06-16 17:23:02 +00:00
|
|
|
import UnlinkFilePlugin from './webpack/plugins/unlink-file-plugin'
|
|
|
|
import PagesManifestPlugin from './webpack/plugins/pages-manifest-plugin'
|
|
|
|
import BuildManifestPlugin from './webpack/plugins/build-manifest-plugin'
|
2018-07-24 09:24:40 +00:00
|
|
|
import ChunkNamesPlugin from './webpack/plugins/chunk-names-plugin'
|
|
|
|
import { ReactLoadablePlugin } from './webpack/plugins/react-loadable-plugin'
|
2018-07-27 17:29:25 +00:00
|
|
|
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'
|
2016-12-27 23:28:19 +00:00
|
|
|
|
2018-07-24 09:24:40 +00:00
|
|
|
// The externals config makes sure that
|
|
|
|
// on the server side when modules are
|
|
|
|
// in node_modules they don't get compiled by webpack
|
2018-01-30 15:40:52 +00:00
|
|
|
function externalsConfig (dir, isServer) {
|
|
|
|
const externals = []
|
2017-12-05 23:46:06 +00:00
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
if (!isServer) {
|
|
|
|
return externals
|
|
|
|
}
|
2017-12-05 23:46:06 +00:00
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
externals.push((context, request, callback) => {
|
|
|
|
resolve(request, { basedir: dir, preserveSymlinks: true }, (err, res) => {
|
|
|
|
if (err) {
|
|
|
|
return callback()
|
|
|
|
}
|
2017-02-16 02:07:29 +00:00
|
|
|
|
2018-04-12 08:33:22 +00:00
|
|
|
// Default pages have to be transpiled
|
2018-02-06 12:09:41 +00:00
|
|
|
if (res.match(/node_modules[/\\]next[/\\]dist[/\\]pages/)) {
|
|
|
|
return callback()
|
|
|
|
}
|
|
|
|
|
2018-04-12 08:33:22 +00:00
|
|
|
// Webpack itself has to be compiled because it doesn't always use module relative paths
|
2018-07-30 13:48:02 +00:00
|
|
|
if (res.match(/node_modules[/\\]webpack/) || res.match(/node_modules[/\\]css-loader/)) {
|
2018-02-06 12:09:41 +00:00
|
|
|
return callback()
|
|
|
|
}
|
|
|
|
|
2018-03-31 14:08:16 +00:00
|
|
|
if (res.match(/node_modules[/\\].*\.js$/)) {
|
2018-01-30 15:40:52 +00:00
|
|
|
return callback(null, `commonjs ${request}`)
|
|
|
|
}
|
2017-01-31 06:31:27 +00:00
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
callback()
|
|
|
|
})
|
|
|
|
})
|
2017-08-30 10:49:40 +00:00
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
return externals
|
|
|
|
}
|
2017-08-30 10:49:40 +00:00
|
|
|
|
2018-07-24 09:24:40 +00:00
|
|
|
function optimizationConfig ({dir, dev, isServer, totalPages}) {
|
|
|
|
if (isServer) {
|
|
|
|
return {
|
|
|
|
splitChunks: false,
|
|
|
|
minimize: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const config: any = {
|
|
|
|
runtimeChunk: {
|
2018-07-27 17:29:25 +00:00
|
|
|
name: CLIENT_STATIC_FILES_RUNTIME_WEBPACK
|
2018-07-24 09:24:40 +00:00
|
|
|
},
|
2018-07-30 13:48:02 +00:00
|
|
|
splitChunks: {
|
|
|
|
cacheGroups: {
|
|
|
|
default: false,
|
|
|
|
vendors: false
|
|
|
|
}
|
|
|
|
}
|
2018-07-24 09:24:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (dev) {
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only enabled in production
|
|
|
|
// This logic will create a commons bundle
|
|
|
|
// with modules that are used in 50% of all pages
|
2018-07-30 13:48:02 +00:00
|
|
|
config.splitChunks.chunks = 'all'
|
|
|
|
config.splitChunks.cacheGroups.commons = {
|
|
|
|
name: 'commons',
|
|
|
|
chunks: 'all',
|
|
|
|
minChunks: totalPages > 2 ? totalPages * 0.5 : 2
|
2018-07-24 09:24:40 +00:00
|
|
|
}
|
2018-07-30 13:48:02 +00:00
|
|
|
|
|
|
|
return config
|
2018-07-24 09:24:40 +00:00
|
|
|
}
|
|
|
|
|
2018-06-16 17:23:02 +00:00
|
|
|
type BaseConfigContext = {|
|
|
|
|
dev: boolean,
|
|
|
|
isServer: boolean,
|
|
|
|
buildId: string,
|
|
|
|
config: NextConfig
|
|
|
|
|}
|
|
|
|
|
|
|
|
export default async function getBaseWebpackConfig (dir: string, {dev = false, isServer = false, buildId, config}: BaseConfigContext) {
|
2018-01-30 15:40:52 +00:00
|
|
|
const defaultLoaders = {
|
|
|
|
babel: {
|
2018-05-23 18:26:57 +00:00
|
|
|
loader: 'next-babel-loader',
|
|
|
|
options: {dev, isServer}
|
2018-06-14 17:30:14 +00:00
|
|
|
},
|
|
|
|
hotSelfAccept: {
|
|
|
|
loader: 'hot-self-accept-loader',
|
|
|
|
options: {
|
|
|
|
include: [
|
|
|
|
path.join(dir, 'pages')
|
|
|
|
],
|
2018-06-16 13:51:00 +00:00
|
|
|
// All pages are javascript files. So we apply hot-self-accept-loader here to facilitate hot reloading of pages.
|
|
|
|
// This makes sure plugins just have to implement `pageExtensions` instead of also implementing the loader
|
|
|
|
extensions: new RegExp(`\\.+(${config.pageExtensions.join('|')})$`)
|
2018-06-14 17:30:14 +00:00
|
|
|
}
|
2016-10-15 16:17:27 +00:00
|
|
|
}
|
2018-01-30 15:40:52 +00:00
|
|
|
}
|
|
|
|
|
2018-02-01 15:21:18 +00:00
|
|
|
// Support for NODE_PATH
|
|
|
|
const nodePathList = (process.env.NODE_PATH || '')
|
|
|
|
.split(process.platform === 'win32' ? ';' : ':')
|
|
|
|
.filter((p) => !!p)
|
|
|
|
|
2018-07-24 09:24:40 +00:00
|
|
|
const outputPath = path.join(dir, config.distDir, isServer ? SERVER_DIRECTORY : '')
|
2018-07-25 11:45:42 +00:00
|
|
|
const pagesEntries = await getPages(dir, {nextPagesDir: DEFAULT_PAGES_DIR, dev, buildId, isServer, pageExtensions: config.pageExtensions.join('|')})
|
2018-03-31 12:00:56 +00:00
|
|
|
const totalPages = Object.keys(pagesEntries).length
|
|
|
|
const clientEntries = !isServer ? {
|
2018-07-24 09:24:40 +00:00
|
|
|
// Backwards compatibility
|
|
|
|
'main.js': [],
|
2018-07-27 17:29:25 +00:00
|
|
|
[CLIENT_STATIC_FILES_RUNTIME_MAIN]: [
|
2018-06-14 17:30:14 +00:00
|
|
|
path.join(NEXT_PROJECT_ROOT_DIST, 'client', (dev ? `next-dev` : 'next'))
|
2018-03-31 12:00:56 +00:00
|
|
|
].filter(Boolean)
|
|
|
|
} : {}
|
2016-10-19 12:41:45 +00:00
|
|
|
|
2016-12-17 18:38:11 +00:00
|
|
|
let webpackConfig = {
|
2018-07-24 09:24:40 +00:00
|
|
|
mode: dev ? 'development' : 'production',
|
2018-04-18 16:18:06 +00:00
|
|
|
devtool: dev ? 'cheap-module-source-map' : false,
|
2018-01-30 15:40:52 +00:00
|
|
|
name: isServer ? 'server' : 'client',
|
|
|
|
cache: true,
|
|
|
|
target: isServer ? 'node' : 'web',
|
|
|
|
externals: externalsConfig(dir, isServer),
|
2018-07-24 09:24:40 +00:00
|
|
|
optimization: optimizationConfig({dir, dev, isServer, totalPages}),
|
|
|
|
recordsPath: path.join(outputPath, 'records.json'),
|
2016-10-14 15:05:08 +00:00
|
|
|
context: dir,
|
2018-03-31 12:00:56 +00:00
|
|
|
// Kept as function to be backwards compatible
|
2018-01-30 15:40:52 +00:00
|
|
|
entry: async () => {
|
|
|
|
return {
|
2018-03-31 12:00:56 +00:00
|
|
|
...clientEntries,
|
|
|
|
// Only _error and _document when in development. The rest is handled by on-demand-entries
|
|
|
|
...pagesEntries
|
2018-01-30 15:40:52 +00:00
|
|
|
}
|
|
|
|
},
|
2016-10-14 15:05:08 +00:00
|
|
|
output: {
|
2018-07-24 09:24:40 +00:00
|
|
|
path: outputPath,
|
|
|
|
filename: ({chunk}) => {
|
2018-08-04 17:00:13 +00:00
|
|
|
// Use `[name]-[contenthash].js` in production
|
2018-07-27 17:29:25 +00:00
|
|
|
if (!dev && (chunk.name === CLIENT_STATIC_FILES_RUNTIME_MAIN || chunk.name === CLIENT_STATIC_FILES_RUNTIME_WEBPACK)) {
|
2018-08-04 18:18:20 +00:00
|
|
|
return chunk.name.replace(/\.js$/, '-[contenthash].js')
|
2018-07-24 09:24:40 +00:00
|
|
|
}
|
|
|
|
return '[name]'
|
|
|
|
},
|
2016-10-14 15:05:08 +00:00
|
|
|
libraryTarget: 'commonjs2',
|
2018-07-24 09:24:40 +00:00
|
|
|
hotUpdateChunkFilename: 'static/webpack/[id].[hash].hot-update.js',
|
|
|
|
hotUpdateMainFilename: 'static/webpack/[hash].hot-update.json',
|
|
|
|
// This saves chunks with the name given via `import()`
|
2018-08-04 17:00:13 +00:00
|
|
|
chunkFilename: isServer ? `${dev ? '[name]' : '[contenthash]'}.js` : `static/chunks/${dev ? '[name]' : '[contenthash]'}.js`,
|
2018-04-18 16:18:06 +00:00
|
|
|
strictModuleExceptionHandling: true
|
2016-10-14 15:05:08 +00:00
|
|
|
},
|
2018-01-30 15:40:52 +00:00
|
|
|
performance: { hints: false },
|
2016-10-14 15:05:08 +00:00
|
|
|
resolve: {
|
2018-01-30 15:40:52 +00:00
|
|
|
extensions: ['.js', '.jsx', '.json'],
|
|
|
|
modules: [
|
2018-06-14 17:30:14 +00:00
|
|
|
NEXT_PROJECT_ROOT_NODE_MODULES,
|
2018-02-01 15:21:18 +00:00
|
|
|
'node_modules',
|
|
|
|
...nodePathList // Support for NODE_PATH environment variable
|
2018-01-30 15:40:52 +00:00
|
|
|
],
|
2018-01-03 12:43:48 +00:00
|
|
|
alias: {
|
2018-06-14 17:30:14 +00:00
|
|
|
next: NEXT_PROJECT_ROOT
|
2018-01-30 15:40:52 +00:00
|
|
|
}
|
2016-10-14 15:05:08 +00:00
|
|
|
},
|
|
|
|
resolveLoader: {
|
2016-12-28 18:16:52 +00:00
|
|
|
modules: [
|
2018-06-14 17:30:14 +00:00
|
|
|
NEXT_PROJECT_ROOT_NODE_MODULES,
|
2017-01-01 05:57:13 +00:00
|
|
|
'node_modules',
|
2018-06-16 17:23:02 +00:00
|
|
|
path.join(__dirname, 'webpack', 'loaders'), // The loaders Next.js provides
|
2018-02-01 15:21:18 +00:00
|
|
|
...nodePathList // Support for NODE_PATH environment variable
|
2016-10-14 15:05:08 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
module: {
|
2018-01-03 12:43:48 +00:00
|
|
|
rules: [
|
2018-01-30 15:40:52 +00:00
|
|
|
dev && !isServer && {
|
2018-06-28 18:07:41 +00:00
|
|
|
test: defaultLoaders.hotSelfAccept.options.extensions,
|
2018-06-14 17:30:14 +00:00
|
|
|
include: defaultLoaders.hotSelfAccept.options.include,
|
|
|
|
use: defaultLoaders.hotSelfAccept
|
2018-01-30 15:40:52 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-31 21:19:06 +00:00
|
|
|
test: /\.(js|jsx)$/,
|
2018-01-30 15:40:52 +00:00
|
|
|
include: [dir],
|
|
|
|
exclude: /node_modules/,
|
|
|
|
use: defaultLoaders.babel
|
|
|
|
}
|
|
|
|
].filter(Boolean)
|
2016-10-16 04:01:17 +00:00
|
|
|
},
|
2018-01-30 15:40:52 +00:00
|
|
|
plugins: [
|
2018-07-24 09:24:40 +00:00
|
|
|
// This plugin makes sure `output.filename` is used for entry chunks
|
|
|
|
new ChunkNamesPlugin(),
|
|
|
|
!isServer && new ReactLoadablePlugin({
|
|
|
|
filename: REACT_LOADABLE_MANIFEST
|
|
|
|
}),
|
|
|
|
new WebpackBar({
|
|
|
|
name: isServer ? 'server' : 'client'
|
|
|
|
}),
|
|
|
|
dev && !isServer && new FriendlyErrorsWebpackPlugin(),
|
2018-01-30 15:40:52 +00:00
|
|
|
new webpack.IgnorePlugin(/(precomputed)/, /node_modules.+(elliptic)/),
|
2018-07-24 09:24:40 +00:00
|
|
|
// Even though require.cache is server only we have to clear assets from both compilations
|
|
|
|
// This is because the client compilation generates the build manifest that's used on the server side
|
|
|
|
dev && new NextJsRequireCacheHotReloader(),
|
|
|
|
dev && !isServer && new webpack.HotModuleReplacementPlugin(),
|
2018-01-30 15:40:52 +00:00
|
|
|
dev && new webpack.NoEmitOnErrorsPlugin(),
|
|
|
|
dev && new UnlinkFilePlugin(),
|
|
|
|
dev && new CaseSensitivePathPlugin(), // Since on macOS the filesystem is case-insensitive this will make sure your path are case-sensitive
|
|
|
|
dev && new WriteFilePlugin({
|
|
|
|
exitOnErrors: false,
|
|
|
|
log: false,
|
|
|
|
// required not to cache removed files
|
|
|
|
useHashIndex: false
|
|
|
|
}),
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env.NODE_ENV': JSON.stringify(dev ? 'development' : 'production')
|
|
|
|
}),
|
|
|
|
!dev && new webpack.optimize.ModuleConcatenationPlugin(),
|
2018-03-30 13:08:09 +00:00
|
|
|
isServer && new PagesManifestPlugin(),
|
2018-04-12 07:47:42 +00:00
|
|
|
!isServer && new BuildManifestPlugin(),
|
2018-01-30 15:40:52 +00:00
|
|
|
!isServer && new PagesPlugin(),
|
2018-02-19 10:49:41 +00:00
|
|
|
isServer && new NextJsSsrImportPlugin(),
|
2018-07-24 09:24:40 +00:00
|
|
|
isServer && new NextJsSSRModuleCachePlugin({outputPath})
|
2018-01-30 15:40:52 +00:00
|
|
|
].filter(Boolean)
|
2016-12-17 18:38:11 +00:00
|
|
|
}
|
2016-12-22 01:36:00 +00:00
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
if (typeof config.webpack === 'function') {
|
2018-02-17 11:37:33 +00:00
|
|
|
webpackConfig = config.webpack(webpackConfig, {dir, dev, isServer, buildId, config, defaultLoaders, totalPages})
|
2016-12-17 18:38:11 +00:00
|
|
|
}
|
2018-01-30 15:40:52 +00:00
|
|
|
|
2018-07-24 09:24:40 +00:00
|
|
|
// Backwards compat for `main.js` entry key
|
|
|
|
const originalEntry = webpackConfig.entry
|
|
|
|
webpackConfig.entry = async () => {
|
|
|
|
const entry: any = {...await originalEntry()}
|
|
|
|
|
|
|
|
// Server compilation doesn't have main.js
|
|
|
|
if (typeof entry['main.js'] !== 'undefined') {
|
2018-07-27 17:29:25 +00:00
|
|
|
entry[CLIENT_STATIC_FILES_RUNTIME_MAIN] = [
|
2018-07-24 09:24:40 +00:00
|
|
|
...entry['main.js'],
|
2018-07-27 17:29:25 +00:00
|
|
|
...entry[CLIENT_STATIC_FILES_RUNTIME_MAIN]
|
2018-07-24 09:24:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
delete entry['main.js']
|
|
|
|
}
|
|
|
|
|
|
|
|
return entry
|
|
|
|
}
|
|
|
|
|
2018-01-30 15:40:52 +00:00
|
|
|
return webpackConfig
|
2016-10-14 15:05:08 +00:00
|
|
|
}
|