如何在模具配置中使用'copy',我正在努力使所有i18n.json在编译后可用。
export const config: Config = {
namespace: 'components',
plugins: [
...
],
outputTargets: [
...
],
copy: [
{
src: "**/*.i18n.*.json",
dest: "i18n",
warn: true
}
],
};
错误:
复制:{src:string;dest:string,warn:boolean;}[];}'不是可分配给类型"StencilConfig">
复制任务已移动到输出目标中(我认为是在版本1中)。因此,只需将复制任务移动到一个(或多个)输出目标中即可。
export const config: Config = {
namespace: 'components',
plugins: [
...
],
outputTargets: [
{
type: 'www',
copy: [
{
src: "**/*.i18n.*.json",
dest: "i18n",
warn: true
}
],
}
],
};
以下是文档:https://stenciljs.com/docs/copy-tasks#copy-输出目标的任务