mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-12 11:48:17 +00:00
81 lines
1.9 KiB
TypeScript
81 lines
1.9 KiB
TypeScript
import { isAbsolute } from 'pathe'
|
|
import webpack from 'webpack'
|
|
import { WebpackConfigContext, applyPresets, getWebpackConfig } from '../utils/config'
|
|
import { nuxt } from '../presets/nuxt'
|
|
import { node } from '../presets/node'
|
|
|
|
const assetPattern = /\.(css|s[ca]ss|png|jpe?g|gif|svg|woff2?|eot|ttf|otf|webp|webm|mp4|ogv)(\?.*)?$/i
|
|
|
|
export function server (ctx: WebpackConfigContext) {
|
|
ctx.name = 'server'
|
|
ctx.isServer = true
|
|
|
|
applyPresets(ctx, [
|
|
nuxt,
|
|
node,
|
|
serverStandalone,
|
|
serverPreset,
|
|
serverPlugins
|
|
])
|
|
|
|
return getWebpackConfig(ctx)
|
|
}
|
|
|
|
function serverPreset (ctx: WebpackConfigContext) {
|
|
const { config } = ctx
|
|
|
|
config.output.filename = 'server.mjs'
|
|
config.devtool = 'cheap-module-source-map'
|
|
|
|
config.optimization = {
|
|
splitChunks: false,
|
|
minimize: false
|
|
}
|
|
}
|
|
|
|
function serverStandalone (ctx: WebpackConfigContext) {
|
|
// TODO: Refactor this out of webpack
|
|
const inline = [
|
|
'src/',
|
|
'#app',
|
|
'nuxt3',
|
|
'!',
|
|
'-!',
|
|
'~',
|
|
'@/',
|
|
'#',
|
|
...ctx.options.build.transpile
|
|
]
|
|
const external = ['#nitro']
|
|
|
|
if (!Array.isArray(ctx.config.externals)) { return }
|
|
ctx.config.externals.push(({ request }, cb) => {
|
|
if (external.includes(request)) {
|
|
return cb(null, true)
|
|
}
|
|
if (
|
|
request[0] === '.' ||
|
|
isAbsolute(request) ||
|
|
inline.find(prefix => typeof prefix === 'string' && request.startsWith(prefix)) ||
|
|
assetPattern.test(request)
|
|
) {
|
|
// console.log('Inline', request)
|
|
return cb(null, false)
|
|
}
|
|
// console.log('Ext', request)
|
|
return cb(null, true)
|
|
})
|
|
}
|
|
|
|
function serverPlugins (ctx: WebpackConfigContext) {
|
|
const { config, options } = ctx
|
|
|
|
// Server polyfills
|
|
if (options.webpack.serverURLPolyfill) {
|
|
config.plugins.push(new webpack.ProvidePlugin({
|
|
URL: [options.webpack.serverURLPolyfill, 'URL'],
|
|
URLSearchParams: [options.webpack.serverURLPolyfill, 'URLSearchParams']
|
|
}))
|
|
}
|
|
}
|