Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>10.0.0</Version>
<Version>10.0.1</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { snapdom } from './lib/snapdom.min.mjs'
import { snapdom } from './lib/snapdom.mjs'
Copy link

Copilot AI Nov 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The import statement is now pointing to the unminified version snapdom.mjs instead of snapdom.min.mjs. This will significantly increase the bundle size and impact load performance. For production use, it's recommended to use the minified version unless debugging is specifically needed.

Consider either:

  1. Reverting to ./lib/snapdom.min.mjs for production builds
  2. Using conditional imports based on build configuration (debug vs release)
Suggested change
import { snapdom } from './lib/snapdom.mjs'
import { snapdom } from './lib/snapdom.min.mjs'

Copilot uses AI. Check for mistakes.

export async function getUrl(selector, options) {
let data = null;
Expand Down
Loading
Loading