We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When hosting a BlazorWebView in a Windows Forms project, reboot.css is not found at runtime.
Tested 2.3.*, 2.4.1, 2.4.2 and 3.0.0-RC.1 (with and without manually adding web-components.min.js - see #631
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Notifications</title> <base href="/" /> <link href="_content/Microsoft.Fast.Components.FluentUI/reboot.css" rel="stylesheet" /> <link href="css/app.css" rel="stylesheet" /> <link href="ProjectName.styles.css" rel="stylesheet" /> </head> <body> <div id="app">Loading...</div> <div id="blazor-error-ui"> An unhandled error has occurred. <a href="" class="reload">Reload</a>s <a class="dismiss">🗙</a> </div> <script type="module" src="_content/Microsoft.Fast.Components.FluentUI/js/web-components.min.js"></script> <!--<script type="module" src="_content/Microsoft.Fast.Components.FluentUI/js/web-components-v2.5.16.min.js"></script>--> <script src="_framework/blazor.webview.js"></script> </body> </html>
reboot.css should be generated/downloaded at runtime
reboot.css is not generated/downloaded at runtime
Manually download reboot.css and variables.css and add links to Windows Forms project, wwwroot/index.html
The text was updated successfully, but these errors were encountered:
This is not a bug.
<link href="_content/Microsoft.Fast.Components.FluentUI/reboot.css" rel="stylesheet" />
should be
<link href="_content/Microsoft.Fast.Components.FluentUI/css/reboot.css" rel="stylesheet" />
Sorry, something went wrong.
No branches or pull requests
🐛 Bug Report
When hosting a BlazorWebView in a Windows Forms project, reboot.css is not found at runtime.
Tested 2.3.*, 2.4.1, 2.4.2 and 3.0.0-RC.1 (with and without manually adding web-components.min.js - see #631
💻 Repro or Code Sample
🤔 Expected Behavior
reboot.css should be generated/downloaded at runtime
😯 Current Behavior
reboot.css is not generated/downloaded at runtime
💁 Possible Solution
Manually download reboot.css and variables.css and add links to Windows Forms project, wwwroot/index.html
🌍 Your Environment
The text was updated successfully, but these errors were encountered: