gpt4 book ai didi

javascript - 带有汇总的绝对导入

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:58:13 26 4
gpt4 key购买 nike

我正在尝试像这样导入

import { startup } from "applicationRoot/renderUI";

在我的应用程序中的任何地方工作。我认为 rollup-plugin-alias 很适合这个。我尝试配置

alias({
applicationRoot: "applicationRoot/"
})

在我的插件数组中。这很接近,但是扩展被删除了,所以我得到了错误:

c:\path\to\applicationRoot\renderUI doesn't exist.

加入

alias({
resolve: [".js"],
applicationRoot: "applicationRoot/"
}),

没有改变任何东西。

最佳答案

您可以使用 rollup-plugin-includepaths .

将此添加到您的 Rollup 配置中:

import includePaths from 'rollup-plugin-includepaths';

export default {
...
plugins: [
...
includePaths({ paths: ["./"] })
]
};

这将告诉 Rollup 也从你的应用程序的根目录解析导入,所以像

import { startup } from "applicationRoot/renderUI";

将适本地找到一个 applicationRoot 文件夹。

关于javascript - 带有汇总的绝对导入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48812673/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com