Documentation
Remix
Remix is a full-stack JavaScript framework for building web applications. To import fonts into a Remix project, you can leverage the CSS bundler plugin built into the framework. Follow the steps below to set it up.
1. Install the plugin
⬤⬤
sh
2. Configure the plugin
Modify root.tsx
to include the following code:
⬤⬤
tsx
Note: You MUST include the
.css
extension when importing the file or you will get an error.
3. Usage
You can now use the imported fonts in your Remix.js project.
⬤⬤
css
Read the official documentation on the plugin here.