create-solid
Advanced tools
Comparing version 0.1.0-alpha.45 to 0.1.0-alpha.46
{ | ||
"name": "create-solid", | ||
"version": "0.1.0-alpha.45", | ||
"version": "0.1.0-alpha.46", | ||
"description": "Create Solid apps with low configuration", | ||
@@ -21,3 +21,3 @@ "author": "Ryan Carniato", | ||
], | ||
"gitHead": "ee33200031f61ae50b2d4d1a4c84ce632078fd31" | ||
"gitHead": "55ac0e04db354035b8c37d9fa3478d22fa437d9b" | ||
} |
@@ -11,6 +11,6 @@ { | ||
"solid-app-router": "^0.1.14", | ||
"solid-js": "^1.2.6", | ||
"solid-js": "^1.3.0-rc.0", | ||
"solid-meta": "^0.27.2", | ||
"solid-start": "next", | ||
"solid-start-node": "next", | ||
"solid-start": "beta", | ||
"solid-start-node": "beta", | ||
"typescript": "^4.4.3", | ||
@@ -20,4 +20,4 @@ "vite": "^2.7.1" | ||
"engines": { | ||
"node": ">=12" | ||
"node": ">=14" | ||
} | ||
} |
@@ -11,11 +11,11 @@ { | ||
"solid-app-router": "^0.1.14", | ||
"solid-js": "^1.2.6", | ||
"solid-js": "^1.3.0-rc.0", | ||
"solid-meta": "^0.27.2", | ||
"solid-start": "next", | ||
"solid-start-node": "next", | ||
"solid-start": "beta", | ||
"solid-start-node": "beta", | ||
"vite": "^2.7.1" | ||
}, | ||
"engines": { | ||
"node": ">=12" | ||
"node": ">=14" | ||
} | ||
} |
// @refresh reload | ||
import { Links, Meta, Outlet, Scripts } from "solid-start/components"; | ||
export default function Root({ Start }) { | ||
export default function Root() { | ||
return ( | ||
<Start> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<Meta /> | ||
<Links /> | ||
</head> | ||
<body> | ||
<Outlet /> | ||
<Scripts /> | ||
</body> | ||
</html> | ||
</Start> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<Meta /> | ||
<Links /> | ||
</head> | ||
<body> | ||
<Outlet /> | ||
<Scripts /> | ||
</body> | ||
</html> | ||
); | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
106221
218
31