官方说明: context (optional): manifest 文件中请求的上下文(context)(默认值为 webpack 的上下文(context)) 如何通俗解释,实际运用时context不同的配置有何影响?
默认是 webpack的context。官方解释是 The base directory, an absolute path, for resolving entry points and loaders from configuration.字符串类型,一般指当前目录的绝对路径。也就是说我打包模块,以哪个路径为基准开始找。
默认是 webpack的context。官方解释是 The base directory, an absolute path, for resolving entry points and loaders from configuration.
字符串类型,一般指当前目录的绝对路径。也就是说我打包模块,以哪个路径为基准开始找。