Configuring and Using HMR (Hot Module Replacement)
Hot Module Replacement (HMR) is a core feature of MageObsidian powered by Vite, enabling real-time updates to your frontend without refreshing the browser. This drastically improves developer productivity by providing instant feedback during development.
⚠️ Important Notice
The configurations described in this section are strictly for development environments.
Do not apply these configurations to production environments, as they could expose your application to unnecessary risks and degrade performance.
Prerequisites: Nginx Configuration
One of the key advantages of Vite is its ability to handle HMR efficiently. However, to fully leverage this feature in your Magento environment, you need to configure your Nginx server to redirect traffic appropriately to the Vite development server.
1. General Vite Proxy Rules
Add the following block to handle HMR-specific traffic and WebSocket connections, which are essential for HMR:
2. Static Asset Proxy Rules
This block ensures that static assets generated by Vite, such as compiled CSS or JavaScript, are correctly proxied:
3. Placement of Proxy Rules
Ensure these rules are placed below your existing block for static assets, such as:
1. Starting the Vite Server
The Vite development server must be running for HMR to work. Use the following command to start it for a specific theme:
This command initializes Vite, setting up its built-in HMR server to listen on the specified host and port.
Environment Configuration
- The Vite server's host and port are configurable through environment variables.
- On the first run, if these variables are not set, Vite will prompt you to configure them.
2. Configuring Magento for HMR
Ensure the following settings are enabled in your Magento environment:
-
Developer Mode:
Magento must be running in developer mode. Activate it with: -
MageObsidian HMR Configuration:
The'mage-obsidian/hmr/enabled'
configuration key must be set totrue
. This setting is enabled by default when MageObsidian is installed.
3. Using HMR in Your Workflow
Once all configurations are in place:
-
Start the Vite server for your theme:
-
Open your Magento site in the browser. Any changes made to your frontend code will be reflected immediately without requiring a page reload.
Key Advantages of Vite’s HMR
-
Real-Time Feedback:
Instantly see changes to your frontend without refreshing the browser, dramatically improving development speed. -
WebSocket-Based Updates:
Vite’s use of WebSocket connections ensures smooth updates, including live CSS injection and JavaScript changes. -
Optimized Asset Handling:
Vite dynamically serves assets, avoiding full recompilation and reducing the development server’s overhead. -
Simplified Configuration:
With Nginx and environment variables properly set, the workflow is seamless.
Example Workflow
-
Edit a CSS File:
Modify a file inview/frontend/web/css/module.extend.css
. The browser updates instantly. -
Edit a Vue Component:
Update a component inview/frontend/web/components
. HMR dynamically replaces the module, and the change appears immediately. -
Observe Results:
No page reloads. No manual interventions. Just instant updates.
Troubleshooting
- HMR Not Working:
- Ensure the Vite server is running on the correct host and port.
-
Verify that Nginx is correctly proxying the traffic to the Vite server.
-
Static Files Not Updating:
- Check that the
'mage-obsidian/hmr/enabled'
configuration istrue
. -
Make sure Magento is in developer mode.
-
Environment Variable Issues:
- Ensure the environment variables for Vite’s host and port are correctly set.
With HMR configured, you can fully leverage Vite’s modern tooling and experience a faster, smoother frontend development process with MageObsidian.