1
1
import fs from 'node:fs'
2
- import fsp from 'node:fs/promises'
3
2
import path from 'node:path'
3
+ import fsp from 'node:fs/promises'
4
4
import { pathToFileURL } from 'node:url'
5
5
import { promisify } from 'node:util'
6
6
import { performance } from 'node:perf_hooks'
7
7
import { createRequire } from 'node:module'
8
8
import crypto from 'node:crypto'
9
9
import colors from 'picocolors'
10
10
import type { Alias , AliasOptions } from 'dep-types/alias'
11
- import { build } from 'esbuild'
12
11
import type { RollupOptions } from 'rollup'
13
12
import picomatch from 'picomatch'
13
+ import { build } from 'esbuild'
14
14
import type { AnymatchFn } from '../types/anymatch'
15
15
import { withTrailingSlash } from '../shared/utils'
16
16
import {
@@ -83,12 +83,12 @@ import {
83
83
resolvePlugins ,
84
84
} from './plugins'
85
85
import type { ESBuildOptions } from './plugins/esbuild'
86
- import type {
87
- EnvironmentResolveOptions ,
88
- InternalResolveOptions ,
89
- ResolveOptions ,
86
+ import {
87
+ type EnvironmentResolveOptions ,
88
+ type InternalResolveOptions ,
89
+ type ResolveOptions ,
90
+ tryNodeResolve ,
90
91
} from './plugins/resolve'
91
- import { tryNodeResolve } from './plugins/resolve'
92
92
import type { LogLevel , Logger } from './logger'
93
93
import { createLogger } from './logger'
94
94
import type { DepOptimizationOptions } from './optimizer'
@@ -100,6 +100,7 @@ import type { ResolvedSSROptions, SSROptions } from './ssr'
100
100
import { resolveSSROptions , ssrConfigDefaults } from './ssr'
101
101
import { PartialEnvironment } from './baseEnvironment'
102
102
import { createIdResolver } from './idResolver'
103
+ import { runnerImport } from './ssr/runnerImport'
103
104
import { getAdditionalAllowedHosts } from './server/middlewares/hostCheck'
104
105
105
106
const debug = createDebugger ( 'vite:config' , { depth : 10 } )
@@ -543,6 +544,8 @@ export interface ResolvedWorkerOptions {
543
544
544
545
export interface InlineConfig extends UserConfig {
545
546
configFile ?: string | false
547
+ /** @experimental */
548
+ configLoader ?: 'bundle' | 'runner'
546
549
envFile ?: false
547
550
}
548
551
@@ -1024,6 +1027,7 @@ export async function resolveConfig(
1024
1027
config . root ,
1025
1028
config . logLevel ,
1026
1029
config . customLogger ,
1030
+ config . configLoader ,
1027
1031
)
1028
1032
if ( loadResult ) {
1029
1033
config = mergeConfig ( loadResult . config , config )
@@ -1680,11 +1684,18 @@ export async function loadConfigFromFile(
1680
1684
configRoot : string = process . cwd ( ) ,
1681
1685
logLevel ?: LogLevel ,
1682
1686
customLogger ?: Logger ,
1687
+ configLoader : 'bundle' | 'runner' = 'bundle' ,
1683
1688
) : Promise < {
1684
1689
path : string
1685
1690
config : UserConfig
1686
1691
dependencies : string [ ]
1687
1692
} | null > {
1693
+ if ( configLoader !== 'bundle' && configLoader !== 'runner' ) {
1694
+ throw new Error (
1695
+ `Unsupported configLoader: ${ configLoader } . Accepted values are 'bundle' and 'runner'.` ,
1696
+ )
1697
+ }
1698
+
1688
1699
const start = performance . now ( )
1689
1700
const getTime = ( ) => `${ ( performance . now ( ) - start ) . toFixed ( 2 ) } ms`
1690
1701
@@ -1710,28 +1721,23 @@ export async function loadConfigFromFile(
1710
1721
return null
1711
1722
}
1712
1723
1713
- const isESM =
1714
- typeof process . versions . deno === 'string' || isFilePathESM ( resolvedPath )
1715
-
1716
1724
try {
1717
- const bundled = await bundleConfigFile ( resolvedPath , isESM )
1718
- const userConfig = await loadConfigFromBundledFile (
1719
- resolvedPath ,
1720
- bundled . code ,
1721
- isESM ,
1722
- )
1723
- debug ?.( `bundled config file loaded in ${ getTime ( ) } ` )
1724
-
1725
- const config = await ( typeof userConfig === 'function'
1726
- ? userConfig ( configEnv )
1727
- : userConfig )
1725
+ const resolver =
1726
+ configLoader === 'bundle' ? bundleAndLoadConfigFile : importConfigFile
1727
+ const { configExport, dependencies } = await resolver ( resolvedPath )
1728
+ debug ?.( `config file loaded in ${ getTime ( ) } ` )
1729
+
1730
+ const config = await ( typeof configExport === 'function'
1731
+ ? configExport ( configEnv )
1732
+ : configExport )
1728
1733
if ( ! isObject ( config ) ) {
1729
1734
throw new Error ( `config must export or return an object.` )
1730
1735
}
1736
+
1731
1737
return {
1732
1738
path : normalizePath ( resolvedPath ) ,
1733
1739
config,
1734
- dependencies : bundled . dependencies ,
1740
+ dependencies,
1735
1741
}
1736
1742
} catch ( e ) {
1737
1743
createLogger ( logLevel , { customLogger } ) . error (
@@ -1744,6 +1750,33 @@ export async function loadConfigFromFile(
1744
1750
}
1745
1751
}
1746
1752
1753
+ async function importConfigFile ( resolvedPath : string ) {
1754
+ const { module, dependencies } = await runnerImport < {
1755
+ default : UserConfigExport
1756
+ } > ( resolvedPath )
1757
+ return {
1758
+ configExport : module . default ,
1759
+ dependencies,
1760
+ }
1761
+ }
1762
+
1763
+ async function bundleAndLoadConfigFile ( resolvedPath : string ) {
1764
+ const isESM =
1765
+ typeof process . versions . deno === 'string' || isFilePathESM ( resolvedPath )
1766
+
1767
+ const bundled = await bundleConfigFile ( resolvedPath , isESM )
1768
+ const userConfig = await loadConfigFromBundledFile (
1769
+ resolvedPath ,
1770
+ bundled . code ,
1771
+ isESM ,
1772
+ )
1773
+
1774
+ return {
1775
+ configExport : userConfig ,
1776
+ dependencies : bundled . dependencies ,
1777
+ }
1778
+ }
1779
+
1747
1780
async function bundleConfigFile (
1748
1781
fileName : string ,
1749
1782
isESM : boolean ,
0 commit comments