@marko/vite 2.2.4 → 2.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -158,7 +158,7 @@ function markoPlugin(opts = {}) {
|
|
|
158
158
|
const ssr = config.ssr ?? (config.ssr = {});
|
|
159
159
|
ssr.external ?? (ssr.external = []);
|
|
160
160
|
ssr.external = ssr.external.concat(serverDeps);
|
|
161
|
-
(await import("@marko/compiler/register")).default(__spreadProps(__spreadValues({}, ssrConfig), {
|
|
161
|
+
(await import("@marko/compiler/register.js")).default(__spreadProps(__spreadValues({}, ssrConfig), {
|
|
162
162
|
sourceMaps: "inline",
|
|
163
163
|
modules: "cjs"
|
|
164
164
|
}));
|
package/dist/index.mjs
CHANGED
|
@@ -121,7 +121,7 @@ function markoPlugin(opts = {}) {
|
|
|
121
121
|
const ssr = config.ssr ?? (config.ssr = {});
|
|
122
122
|
ssr.external ?? (ssr.external = []);
|
|
123
123
|
ssr.external = ssr.external.concat(serverDeps);
|
|
124
|
-
(await import("@marko/compiler/register")).default(__spreadProps(__spreadValues({}, ssrConfig), {
|
|
124
|
+
(await import("@marko/compiler/register.js")).default(__spreadProps(__spreadValues({}, ssrConfig), {
|
|
125
125
|
sourceMaps: "inline",
|
|
126
126
|
modules: "cjs"
|
|
127
127
|
}));
|