mirror of
https://gitee.com/antv/g6.git
synced 2024-12-15 01:51:00 +08:00
747 B
747 B
title | order |
---|---|
Vite + G6 报错 | 3 |
感谢来自 GitHub 用户 @wooodchen 的解决方案
请参考 GitHub Issue #2961 中的解决方案。
需要插件 rollup-plugin-node-rosolve
和 rollup-plugin-commonjs
。虽然不能消除提示,但可以使用。
在 vite.config.js
中如下配置
import resolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs'
// ...
export default defineConfig({
plugin: [
...,
resolve(),
commonjs(),
...
]
})