Repository URL to install this package:
|
Version:
1.2.8 ▾
|
/* eslint max-statements: "OFF" */
import { Options } from '../../typings'
/**
* @todo @james @fixme @important public path SHOULD be absolute as a non fully qualified domain name
* @example /client/ > http://0.0.0:444/client/
*
* @param {any} bundlingOptions
* @returns
*/
export function fromBuildOptionsToPaths(bundlingOptions: Options) {
const { isDev, isProd, isClient } = bundlingOptions
/**
* @deprecated this commented out way
* will be tree shaken when static - we want this as dynamic
*
* @constant
* @static
* @example
* const { bundleConfig } = bundlingOptions
* const { host, port, clientDevServerPort } = bundlingOptions
*
* -------------
* @event refactored |>>
*/
// /server/??? not a web path....
const webPath =
isClient || isProd ? process.env.WEB_PATH || '/client/' : '/server/'
const named = isClient ? 'client' : 'server'
// const DEV_ABSOLUTE_URL = process.env.PUBLIC_PATH_URL
// const DEV_ABSOLUTE_URL = process.env.SERVER_URL + webPath
// const DEV_HMR_URL = `webpack-hot-middleware/client?reload=true&path=${DEV_ABSOLUTE_URL}` + '__webpack_hmr'
// const DEV_ABSOLUTE_URL = process.env.SERVER_URL + webPath
const DEV_ABSOLUTE_URL = '/'
// const DEV_HMR_URL = `webpack-hot-middleware/client?reload=true&path=/__webpack_hmr?name=${named}`
// @todo add as env
const DEV_HMR_URL = `webpack-hot-middleware/client?path=/__webpack_hmr?name=${named}`
// dev
const outputPublicPath = DEV_ABSOLUTE_URL
let clientServerPublicPath = outputPublicPath
if (isProd) {
clientServerPublicPath = webPath
}
console.log({ outputPublicPath })
bundlingOptions.DEV_HMR_URL = DEV_HMR_URL
bundlingOptions.outputPublicPath = outputPublicPath
bundlingOptions.clientServerPublicPath = clientServerPublicPath
bundlingOptions.webPath = webPath
return {
DEV_HMR_URL,
outputPublicPath,
clientServerPublicPath,
webPath,
}
}