vike-lite 1.3.1 → 1.4.0

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.
Files changed (2) hide show
  1. package/dist/vite.mjs +1 -0
  2. package/package.json +1 -1
package/dist/vite.mjs CHANGED
@@ -109,6 +109,7 @@ function routerPlugin({ pagesDir = "pages", serverEntry = "server/index", apiPre
109
109
  const { emptyOutDir, minify = true, cssMinify = true, sourcemap } = config.build || {};
110
110
  return {
111
111
  appType: "custom",
112
+ ssr: { noExternal: [/^vike-lite(?:$|-)/] },
112
113
  environments: {
113
114
  client: { build: {
114
115
  outDir: path.join(outDir, "client"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vike-lite",
3
- "version": "1.3.1",
3
+ "version": "1.4.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "./dist/index.mjs",