Merge branch 'site-docs'
This commit is contained in:
commit
dcb0a2bde8
4 changed files with 26 additions and 3 deletions
|
@ -22,6 +22,7 @@
|
||||||
"eslint-config-prettier": "^8.3.0",
|
"eslint-config-prettier": "^8.3.0",
|
||||||
"eslint-plugin-svelte3": "^3.2.1",
|
"eslint-plugin-svelte3": "^3.2.1",
|
||||||
"luxon": "^2.3.0",
|
"luxon": "^2.3.0",
|
||||||
|
"mdsvex": "^0.10.6",
|
||||||
"prettier": "^2.4.1",
|
"prettier": "^2.4.1",
|
||||||
"prettier-plugin-svelte": "^2.4.0",
|
"prettier-plugin-svelte": "^2.4.0",
|
||||||
"sass": "^1.49.7",
|
"sass": "^1.49.7",
|
||||||
|
|
10
web/pw-server/src/routes/docs/doc.svelte
Normal file
10
web/pw-server/src/routes/docs/doc.svelte
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<div class="container">
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.container {
|
||||||
|
width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
</style>
|
3
web/pw-server/src/routes/docs/rules.md
Normal file
3
web/pw-server/src/routes/docs/rules.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Rules
|
||||||
|
|
||||||
|
Hello welcome on the rules page
|
|
@ -1,15 +1,24 @@
|
||||||
import adapter from "@sveltejs/adapter-node";
|
import adapter from "@sveltejs/adapter-node";
|
||||||
import preprocess from "svelte-preprocess";
|
import sveltePreprocess from "svelte-preprocess";
|
||||||
import { viteCommonjs } from "@originjs/vite-plugin-commonjs";
|
import { viteCommonjs } from "@originjs/vite-plugin-commonjs";
|
||||||
import wasmPack from "vite-plugin-wasm-pack";
|
import wasmPack from "vite-plugin-wasm-pack";
|
||||||
import { isoImport } from "vite-plugin-iso-import";
|
import { isoImport } from "vite-plugin-iso-import";
|
||||||
|
import { mdsvex } from "mdsvex";
|
||||||
|
|
||||||
/** @type {import('@sveltejs/kit').Config} */
|
/** @type {import('@sveltejs/kit').Config} */
|
||||||
const config = {
|
const config = {
|
||||||
// Consult https://github.com/sveltejs/svelte-preprocess
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
||||||
// for more information about preprocessors
|
// for more information about preprocessors
|
||||||
preprocess: preprocess(),
|
preprocess: [
|
||||||
|
sveltePreprocess(),
|
||||||
|
mdsvex({
|
||||||
|
extensions: ['.md'],
|
||||||
|
layout: {
|
||||||
|
docs: 'src/routes/docs/doc.svelte',
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
extensions: ['.svelte', '.md'],
|
||||||
kit: {
|
kit: {
|
||||||
adapter: adapter(),
|
adapter: adapter(),
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue