rockiger

Results 22 comments of rockiger

Thanks for sharing. This will be fixed with the next version, due to the use of react.

You don't need `shell_exec` anymore. Which version of the plugin do you use? The apps directory is created by [`wp_mkdir_p`](https://developer.wordpress.org/reference/functions/wp_mkdir_p/). It uses the php function `mkdir`. This needs to be...

Sounds to me that you need a working dev environment. If you can't run `npx create-react-app`, you can't use the plugin. Are we talking about a dev environment or a...

Actually I have that implemented. If you look into https://github.com/rockiger/akiee/blob/master/app/css/gnome.css You can uncomment the code that implements the csd. You then have to start electron frameless in package.json. Since I...

@joeyparis I am totally new to React Boilerplate, too. From my first impression I would go with React Boilerplate CRA. With the exception you can't stand any TypeScript. But you...

I use a React Context like so: ``` import React, { createContext, useContext, useMemo } from 'react' import LocalizedStrings from 'react-localization' export { TranslationProvider, useTranslation } const TranslationContext = createContext()...

I don't know if `--base` has an effect. The `dist`-folder should be set in the `vite.config.js`. Like this: ``` import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' //...

This looks like a problem with a node package of your app. I don't see any connection to with ReactPress. Try to remove ``` PUBLIC_URL=/wp-content/reactpress/apps/wo/build ``` in your `package.json`. Does...

I will keep that in mind when I update the docs.