You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This feature request proposes modifying the project to import the Bootstrap CSS file directly from the node_modules directory. Currently, the project relies on a CDN link for Bootstrap, which might not be accessible in isolated environments without internet access.
Benefits:
Enables deployment in environments with restricted internet access.
Provides more control over the specific Bootstrap version used in the project.
Implementation:
Deleting the link to the CDN from public/index.html, adding import of bootstrap.min.css in src/index.tsx.
Import Bootstrap CSS Locally
Description: This pull request modifies the project to import the Bootstrap CSS file directly from the node_modules directory, replacing the current dependency on the CDN link.
Summary of Changes
This update addresses the feature request to enhance the project's ability to function in isolated environments without internet access by importing Bootstrap CSS locally. The following changes have been made:
Remove CDN Link
Local Bootstrap Import:
Added an import statement for bootstrap.min.css in src/index.tsx.
we test it locally in it seems to run fine
Related issue:
#144
Feature Request: Importing Bootstrap CSS Locally
Description:
This feature request proposes modifying the project to import the Bootstrap CSS file directly from the node_modules directory. Currently, the project relies on a CDN link for Bootstrap, which might not be accessible in isolated environments without internet access.
Benefits:
Implementation:
Deleting the link to the CDN from public/index.html, adding import of bootstrap.min.css in src/index.tsx.
Related links:
https://react-bootstrap.netlify.app/docs/getting-started/introduction
The text was updated successfully, but these errors were encountered: