React

From DiviFree
Revision as of 18:31, 28 March 2023 by Loribel (talk | contribs) (Created page with "==Déployer un app react== * https://create-react-app.dev/docs/deployment/ * https://stackoverflow.com/questions/57090744/how-do-i-configure-my-htaccess-file-for-react-app-in-subdirectory Build the project ( <pre> npm run build </pre> .htaccess <pre> <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /subdirectory RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Déployer un app react

Build the project (

npm run build

.htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /subdirectory
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>