Skip to content

Commit 5946b7d

Browse files
committed
fix: 修复插件引入路径错误
1 parent eabda1f commit 5946b7d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/components/BootstrapBlazor.UniverSheet/wwwroot

src/components/BootstrapBlazor.UniverSheet/wwwroot/univer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export async function createUniverSheetAsync(sheet) {
6060
DefaultPlugin: '_content/BootstrapBlazor.UniverSheet/plugin.js'
6161
};
6262
for (const name in plugins) {
63-
const module = await import(`../../../${plugins[name]}`);
63+
const module = await import(`../../${plugins[name]}`);
6464
const plugin = module[name];
6565
options.plugins.push(plugin);
6666
}

0 commit comments

Comments
 (0)