@sveltejs/kit 1.5.1 → 1.5.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltejs/kit",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/sveltejs/kit",
@@ -357,7 +357,7 @@ function kit({ svelte_config }) {
357
357
  case '\0$internal/paths':
358
358
  const { assets, base } = svelte_config.kit.paths;
359
359
  return `export const base = ${s(base)};
360
- export let assets = ${s(assets)};
360
+ export let assets = ${assets ? s(assets) : 'base'};
361
361
 
362
362
  /** @param {string} path */
363
363
  export function set_assets(path) {