remaxjs / remax

使用真正的 React 构建跨平台小程序
https://remaxjs.github.io/remax/
MIT License
4.57k stars 364 forks source link

添加微信样式,编译报错 #1525

Open jlibx opened 3 years ago

jlibx commented 3 years ago

问题描述 按照demo添加微信样式,编译报错

示例代码 代码仓库

import * as React from 'react';
import 'weui-wxss/dist/style/weui.wxss';
import './app.css';

export const UserContext = React.createContext({});

const App = ({children}) => {
  const [info, setInfo] = React.useState({});
  return (
    <UserContext.Provider value={{info, setInfo}}>
      {children}
    </UserContext.Provider>
  );
};

export default App;

其他信息 企业微信截图_16183071354716 企业微信截图_16183071148073 企业微信截图_16183071524958

watsonhaw5566 commented 3 years ago

这里的wxss配置可以移除了,remax框架本身就可以处理wxss样式文件。