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": { ".svelte-kit/runtime/client/start.js": {
"file": "start-8298e967.js", "file": "start-444cd0bc.js",
"src": ".svelte-kit/runtime/client/start.js", "src": ".svelte-kit/runtime/client/start.js",
"isEntry": true, "isEntry": true,
"imports": [ "imports": [
@ -41,7 +41,7 @@
"_index-c417fbcb.js" "_index-c417fbcb.js"
], ],
"css": [ "css": [
"assets/pages/index.svelte-01dac908.css" "assets/pages/index.svelte-78e065d5.css"
], ],
"assets": [ "assets": [
"assets/Faktos-34d5460e.ttf", "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" /> <link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="content-security-policy" content=""> <meta http-equiv="content-security-policy" content="">
<link rel="modulepreload" href="/_app/start-8298e967.js"> <link rel="modulepreload" href="/aotds-docks/_app/start-444cd0bc.js">
<link rel="modulepreload" href="/_app/chunks/index-ef7ebca2.js"> <link rel="modulepreload" href="/aotds-docks/_app/chunks/index-ef7ebca2.js">
<link rel="modulepreload" href="/_app/chunks/index-c417fbcb.js"> <link rel="modulepreload" href="/aotds-docks/_app/chunks/index-c417fbcb.js">
</head> </head>
<body> <body>
<div id="svelte"> <div id="svelte">
<script type="module" data-hydrate="45h"> <script type="module" data-hydrate="45h">
import { start } from "/_app/start-8298e967.js"; import { start } from "/aotds-docks/_app/start-444cd0bc.js";
start({ start({
target: document.querySelector('[data-hydrate="45h"]').parentNode, target: document.querySelector('[data-hydrate="45h"]').parentNode,
paths: {"base":"","assets":""}, paths: {"base":"/aotds-docks","assets":"/aotds-docks"},
session: {}, session: {},
route: true, route: true,
spa: true, spa: true,

View File

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