with the path

pages
Yanick Champoux 2022-04-02 21:03:47 -04:00
parent ec260de2a9
commit 5d540b7675
8 changed files with 26 additions and 23 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
".svelte-kit/runtime/client/start.js": {
"file": "start-8298e967.js",
"file": "start-444cd0bc.js",
"src": ".svelte-kit/runtime/client/start.js",
"isEntry": true,
"imports": [
@ -41,7 +41,7 @@
"_index-c417fbcb.js"
],
"css": [
"assets/pages/index.svelte-01dac908.css"
"assets/pages/index.svelte-78e065d5.css"
],
"assets": [
"assets/Faktos-34d5460e.ttf",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"version":"1648943558440"}
{"version":"1648947789108"}

View File

@ -5,17 +5,17 @@
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="content-security-policy" content="">
<link rel="modulepreload" href="/_app/start-8298e967.js">
<link rel="modulepreload" href="/_app/chunks/index-ef7ebca2.js">
<link rel="modulepreload" href="/_app/chunks/index-c417fbcb.js">
<link rel="modulepreload" href="/aotds-docks/_app/start-444cd0bc.js">
<link rel="modulepreload" href="/aotds-docks/_app/chunks/index-ef7ebca2.js">
<link rel="modulepreload" href="/aotds-docks/_app/chunks/index-c417fbcb.js">
</head>
<body>
<div id="svelte">
<script type="module" data-hydrate="45h">
import { start } from "/_app/start-8298e967.js";
import { start } from "/aotds-docks/_app/start-444cd0bc.js";
start({
target: document.querySelector('[data-hydrate="45h"]').parentNode,
paths: {"base":"","assets":""},
paths: {"base":"/aotds-docks","assets":"/aotds-docks"},
session: {},
route: true,
spa: true,

View File

@ -3,19 +3,22 @@ import analyze from "rollup-plugin-analyzer";
/** @type {import('@sveltejs/kit').Config} */
export default {
kit: {
// outDir: './docs',
// hydrate the <div id="svelte"> element in src/app.html
adapter: adapter({
fallback: 'index.html'
}),
vite: {
build: {
rollupOptions: {
plugins: [analyze()],
// external: ['updux','@yanick/updeep']
kit: {
// outDir: './docs',
// hydrate the <div id="svelte"> element in src/app.html
paths: {
base: "/aotds-docks",
},
adapter: adapter({
fallback: "index.html",
}),
vite: {
build: {
rollupOptions: {
plugins: [analyze()],
// external: ['updux','@yanick/updeep']
},
},
},
},
},
},
};