tnfe/wp2vite

React 项目报错 React is undefined

cccnobody opened this issue · 2 comments

需要在每个tsx文件声明import React from 'react',webpack构建时不需要。必须每个tsx文件都手动声明嘛

可以试下这个插件:vite-plugin-react-js-support

使用 @vitejs/plugin-react 可以解决

import react from '@vitejs/plugin-react'

...

plugins: [react()]