-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add picocss * fix refresh bug * use main container https://picocss.com/docs/containers.html * add calculators page, better bindings * fix routing issues in static build (nginx config, separate repository) sveltejs/kit#3852 * lang="ts", and allow importing ts ext * generate sourcemap, can also do 'inline'. see: https://vitejs.dev/config/build-options.html#build-sourcemap * add build:dev npm task * upgrade deps
- Loading branch information
Showing
10 changed files
with
1,102 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[*.{js.ts,html,svelte}] | ||
indent_style = tab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export const prerender = true; | ||
export const trailingSlash = 'always'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
<script> | ||
import '@picocss/pico'; | ||
</script> | ||
|
||
<title>Home Page | NutraTech</title> | ||
<h1>Welcome to NutraTech</h1> | ||
|
||
<!--Get environment dynamically: prefix title [DEV]--> | ||
<p>Visit <a href="/calculators/">/calculators/</a> for the calculators</p> | ||
<main class="container"> | ||
<h1>Welcome to NutraTech</h1> | ||
|
||
<p>Visit <a href="/calculators">/calculators</a> for the calculators</p> | ||
|
||
<h2>Externals</h2> | ||
<p>Visit <a rel="external" href="/blog/">/blog/</a> for the blog</p> | ||
<p>Visit <a rel="external" href="/api/">/api/</a> for API documentation</p> | ||
<h2>Externals</h2> | ||
<p>Visit <a rel="external" href="/blog/">/blog/</a> for the blog</p> | ||
<p>Visit <a rel="external" href="/api/">/api/</a> for API documentation</p> | ||
</main> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.