diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cb5d23a..30f185e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,7 +5,7 @@ Build `vike-solid`: ```bash -git clone git@github.com:magne4000/vike-solid +git clone git@github.com:vikejs/vike-solid cd vike-solid/ && pnpm install pnpm build cd ../ diff --git a/examples/basic/README.md b/examples/basic/README.md index 05f28cc..a3fa07a 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -1,7 +1,7 @@ Basic example of using `vike-solid`. ```bash -git clone git@github.com:magne4000/vike-solid +git clone git@github.com:vikejs/vike-solid cd vike-solid/examples/basic/ pnpm install pnpm run dev diff --git a/examples/ssr-spa/README.md b/examples/ssr-spa/README.md index aacf39f..ae99435 100644 --- a/examples/ssr-spa/README.md +++ b/examples/ssr-spa/README.md @@ -2,7 +2,7 @@ Example of selecting SPA or SSR on a per-page basis. See [SPA vs SSR (and more)](https://vike.dev/SPA-vs-SSR). ```bash -git clone git@github.com:magne4000/vike-solid +git clone git@github.com:vikejs/vike-solid cd vike-solid/examples/ssr-spa/ npm install npm run dev diff --git a/vike-solid/README.md b/vike-solid/README.md index 4274fcc..82d1784 100644 --- a/vike-solid/README.md +++ b/vike-solid/README.md @@ -3,10 +3,9 @@ # `vike-solid` -SolidJS integration for [Vike](https://github.com/vikejs/vike/issues/736) (using the -[V1 design](https://vike.dev/migration/v1-design)). +SolidJS integration for [Vike](https://github.com/vikejs/vike) (using the [V1 design](https://vike.dev/migration/v1-design)). > [!NOTE] > For integrations with React and Vue, see the other [`vike-*` packages](https://vike.dev/vike-packages). -See [examples/](https://github.com/magne4000/vike-solid/tree/main/examples). +See [examples/](https://github.com/vikejs/vike-solid/tree/main/examples). diff --git a/vike-solid/package.json b/vike-solid/package.json index 3403fa1..2d73d23 100644 --- a/vike-solid/package.json +++ b/vike-solid/package.json @@ -62,6 +62,6 @@ "bin": "./cli/entry.js", "main": "dist/+config.js", "types": "dist/renderer/+config.d.ts", - "repository": "github:magne4000/vike-solid", + "repository": "github:vikejs/vike-solid", "license": "MIT" } diff --git a/vike-solid/renderer/+config.ts b/vike-solid/renderer/+config.ts index 8a71759..5a11030 100644 --- a/vike-solid/renderer/+config.ts +++ b/vike-solid/renderer/+config.ts @@ -1,5 +1,4 @@ import type { Config, ConfigEffect, PageContext } from "vike/types"; -// We purposely define the ConfigVikeSolid interface in this file: that way we ensure it's always applied whenever the user `import vikeSolid from 'vike-solid'` import type { Component } from "./types.js"; // Depending on the value of `config.meta.ssr`, set other config options' `env` @@ -59,6 +58,7 @@ export default { }, } satisfies Config; +// We purposely define the ConfigVikeSolid interface in this file: that way we ensure it's always applied whenever the user `import vikeSolid from 'vike-solid'` declare global { namespace VikePackages { interface ConfigVikeSolid {