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
Copy file name to clipboardExpand all lines: packages/fullstack/README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,11 @@ This is a proposal to introduce a new API to allow non-client environment to acc
7
7
Currently, it is prototyped in my package `@hiogawa/vite-plugin-fullstack` and it provides `import.meta.vite.assets` function with a following signature:
8
8
9
9
```ts
10
-
function assets({ import?: string, environment?: string }): {
10
+
function assets({
11
+
import?: string,
12
+
environment?: string,
13
+
asEntry?: boolean,
14
+
}): {
11
15
entry?:string; // script for <script type="module" src=...>
0 commit comments