Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Refsa committed Aug 11, 2024
1 parent d4e1587 commit ae5523b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<html>
<head>
<script type='module' src="./main.js"></script>
<script type='module' src="./_framework/dotnet.js"></script>
<link rel="prefetch" href="./_framework/dotnet.native.wasm" as="fetch" crossorigin="anonymous">
<script type='module' src="./framework/dotnet.js"></script>
<link rel="prefetch" href="./framework/dotnet.native.wasm" as="fetch" crossorigin="anonymous">
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { dotnet } from './_framework/dotnet.js'
import { dotnet } from './framework/dotnet.js'

const { getAssemblyExports, getConfig } = await dotnet.create();
let exports = await getAssemblyExports(getConfig().mainAssemblyName);
Expand Down

0 comments on commit ae5523b

Please sign in to comment.