Skip to content

Commit

Permalink
remove non-exist ssr.css
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem committed Dec 22, 2023
1 parent 4ed2d05 commit 9eb814b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/MASA.OfficialWebsite.WebApp/Components/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<meta name="description" content="数闪科技致力于用 .NET技术打造开源企业级开发者门户 平台工程 MASA Stack,提供一站式.NET现代化应用开发交付解决方案,赋能 560万.NET开发者转型为数字化人才,帮助企业降低数字化转型门槛,让变化更简单!" />
<base href="/" />
<link rel="stylesheet" href="_content/Masa.Blazor/css/masa-blazor.min.css" />
<link rel="stylesheet" href="_content/Masa.Blazor/css/masa-blazor.ssr.css" />
<link rel="stylesheet" href="css/standard.css" />
<link rel="stylesheet" href="css/shared.css" />
<link rel="stylesheet" href="css/small-shared.css" media="(max-width: 960px)" />
Expand Down
6 changes: 2 additions & 4 deletions src/MASA.OfficialWebsite.WebApp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@
.AddInteractiveServerComponents()
.AddHubOptions(options =>
{
options.MaximumReceiveMessageSize = 36 * 1024;
options.MaximumReceiveMessageSize = 36 * 1024;
});

builder.Services.AddMasaBlazor(options =>
{
options.ConfigureSsr(options =>
{
});
options.ConfigureSsr();
options.ConfigureTheme(theme => { theme.Themes.Light.Primary = "#4318ff"; });
options.ConfigureBreakpoint(breakpoint => { breakpoint.MobileBreakpoint = Breakpoints.Sm; });
});
Expand Down

0 comments on commit 9eb814b

Please sign in to comment.