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
The @tylertech modules will be added to "node_modules" directory outside of the project root.
Create app.scss file as starting point. Right-click > Web Compiler > Compile file.
Open generated compilerconfig.json, add the following options: "options": { "loadPaths": "../node_modules" }.
Within app.scss, add @use statements to import required Tyler Forge modules
@use '@tylertech/forge/styles/theme' as forge-theme;
@use '@tylertech/forge/styles/typography' as forge-typography;
Save the file. It should compile without error and generate the compiled output file.
Open the output file to see results.
Current behavior
Currently, the output file contains only the copyright comments from the theme, typography modules, and their dependencies. The rest is blank.
Expected behavior
It is expected that the theme and typography module CSS would be contained in the output CSS file OR an error would be thrown to indicate a problem occurred.
The text was updated successfully, but these errors were encountered:
Installed product versions
Description
When I compile, there are no errors, but the resulting CSS file only contains comments from @use dependencies and no CSS. Any idea why?
Steps to recreate
Current behavior
Currently, the output file contains only the copyright comments from the theme, typography modules, and their dependencies. The rest is blank.
Expected behavior
It is expected that the theme and typography module CSS would be contained in the output CSS file OR an error would be thrown to indicate a problem occurred.
The text was updated successfully, but these errors were encountered: