This commit is contained in:
parent
4d9c2b3aa8
commit
c97f61db06
6 changed files with 30 additions and 1 deletions
2
.env
2
.env
|
@ -1,2 +1,4 @@
|
||||||
DEV_SERVER_HTTPS_CERT_BASE=
|
DEV_SERVER_HTTPS_CERT_BASE=
|
||||||
DEV_SERVER_HTTPS_CERT_PASS=
|
DEV_SERVER_HTTPS_CERT_PASS=
|
||||||
|
DEV_LOCATOR_EDITOR=vscode
|
||||||
|
VITE_DEVTOOLS_OVERLAY=true
|
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
|
@ -14,6 +14,7 @@
|
||||||
"author": "Rubicon",
|
"author": "Rubicon",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@solid-devtools/overlay": "^0.30.1",
|
||||||
"@suid/vite-plugin": "^0.3.1",
|
"@suid/vite-plugin": "^0.3.1",
|
||||||
"@types/hammerjs": "^2.0.46",
|
"@types/hammerjs": "^2.0.46",
|
||||||
"@vite-pwa/assets-generator": "^0.2.6",
|
"@vite-pwa/assets-generator": "^0.2.6",
|
||||||
|
@ -50,6 +51,7 @@
|
||||||
"masto": "^6.10.1",
|
"masto": "^6.10.1",
|
||||||
"nanostores": "^0.11.3",
|
"nanostores": "^0.11.3",
|
||||||
"normalize.css": "^8.0.1",
|
"normalize.css": "^8.0.1",
|
||||||
|
"solid-devtools": "^0.30.1",
|
||||||
"solid-js": "^1.9.3",
|
"solid-js": "^1.9.3",
|
||||||
"solid-styled": "^0.11.1",
|
"solid-styled": "^0.11.1",
|
||||||
"stacktrace-js": "^2.0.2",
|
"stacktrace-js": "^2.0.2",
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
import { render } from "solid-js/web";
|
import { render } from "solid-js/web";
|
||||||
import App from "./App.js";
|
import App from "./App.js";
|
||||||
|
import "solid-devtools";
|
||||||
|
|
||||||
render(() => <App />, document.getElementById("root")!);
|
render(() => <App />, document.getElementById("root")!);
|
||||||
|
|
||||||
|
if (import.meta.env.VITE_DEVTOOLS_OVERLAY === "true") {
|
||||||
|
const overlay = await import("@solid-devtools/overlay")
|
||||||
|
overlay.attachDevtoolsOverlay()
|
||||||
|
}
|
||||||
|
|
4
src/overrides.d.ts
vendored
4
src/overrides.d.ts
vendored
|
@ -7,6 +7,10 @@ interface ImportMetaEnv {
|
||||||
* The code reversion. It's recommended to be the git commit sha.
|
* The code reversion. It's recommended to be the git commit sha.
|
||||||
*/
|
*/
|
||||||
readonly VITE_CODE_VERSION?: string;
|
readonly VITE_CODE_VERSION?: string;
|
||||||
|
/**
|
||||||
|
* Attach the overlay (in the dev mode) if it's `"true"`.
|
||||||
|
*/
|
||||||
|
readonly VITE_DEVTOOLS_OVERLAY?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ImportMeta {
|
interface ImportMeta {
|
||||||
|
|
|
@ -6,6 +6,7 @@ import { VitePWA } from "vite-plugin-pwa";
|
||||||
import version from "vite-plugin-package-version";
|
import version from "vite-plugin-package-version";
|
||||||
import manifest from "./manifest.config";
|
import manifest from "./manifest.config";
|
||||||
import { GetManualChunk } from "rollup";
|
import { GetManualChunk } from "rollup";
|
||||||
|
import devtools from "solid-devtools/vite";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Put all strings (/i18n/{key}.<json|js|ts>) into separated chunks based on the key.
|
* Put all strings (/i18n/{key}.<json|js|ts>) into separated chunks based on the key.
|
||||||
|
@ -66,6 +67,20 @@ export default defineConfig(({ mode }) => {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
plugins: [
|
plugins: [
|
||||||
|
devtools({
|
||||||
|
autoname: true,
|
||||||
|
locator: {
|
||||||
|
targetIDE:
|
||||||
|
(devConf["DEV_LOCATOR_EDITOR"] as
|
||||||
|
| "vscode"
|
||||||
|
| "atom"
|
||||||
|
| "webstorm"
|
||||||
|
| "vscode-insiders"
|
||||||
|
| "") || undefined,
|
||||||
|
componentLocation: true,
|
||||||
|
jsxLocation: true,
|
||||||
|
},
|
||||||
|
}),
|
||||||
suid(),
|
suid(),
|
||||||
solid(),
|
solid(),
|
||||||
solidStyled({
|
solidStyled({
|
||||||
|
|
Loading…
Reference in a new issue