Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/long-woo/vite-system-ts

SytemJS 扩展,在浏览器中加载 esm 的 js/ts 文件
https://github.com/long-woo/vite-system-ts

single-spa systemjs systemjs-plugin vite

Last synced: 9 days ago
JSON representation

SytemJS 扩展,在浏览器中加载 esm 的 js/ts 文件

Awesome Lists containing this project

README

        

# vite-system-ts

Vite System HRM 插件,适用于 Single-SPA 架构。

## 使用

1.安装

```sh
pnpm add @loongwoo/vite-plugin-system-ts
```

2.修改 `vite.config.mts` 文件,添加如下代码:

```ts
// ...
# 导入插件
import systemTS from '@loongwoo/vite-plugin-system-ts';

# 添加插件
export default defineConfig({
// 其他配置
// ...
plugins: [
// 其他插件
// ...
systemTS()
]
})
```

3.在基座应用(root-config)的 `index.html`,添加引用:

```html

```