+
+
+
+
+
diff --git a/src/routes/testing/+layout.ts b/src/routes/testing/+layout.ts
new file mode 100644
index 00000000..8c04173b
--- /dev/null
+++ b/src/routes/testing/+layout.ts
@@ -0,0 +1 @@
+// export const prerender = true
\ No newline at end of file
diff --git a/src/routes/testing/+page.svelte b/src/routes/testing/+page.svelte
new file mode 100644
index 00000000..922b16cc
--- /dev/null
+++ b/src/routes/testing/+page.svelte
@@ -0,0 +1,198 @@
+
+
+
+
+
+
Aether - Sponsorships (testing)
+
+
+
+
+
+
+
+
+
+
diff --git a/svelte.config.js b/svelte.config.js
index f81a659e..4b3907dd 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -1,4 +1,6 @@
-import adapter from '@sveltejs/adapter-auto';
+// import adapter from '@sveltejs/adapter-auto';
+import adapter_node from '@sveltejs/adapter-node';
+import adapter_static from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
@@ -7,15 +9,34 @@ const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: [vitePreprocess()],
-
+
vitePlugin: {
inspector: true,
},
kit: {
+ adapter: adapter_node(),
+
+ // adapter: adapter_static({
+ // // default options are shown. On some platforms
+ // // these options are set automatically — see below
+ // pages: 'build',
+ // assets: 'build',
+ // fallback: '200.html', // undefined,
+ // precompress: false,
+ // strict: true
+ // })
+
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
- adapter: adapter()
+ // adapter: adapter()
+
+ // target: "#svelte",
+ // vite: {
+ // optimizeDeps: {
+ // include: ["highlight.js/lib/core"],
+ // },
+ // },
}
};
export default config;
\ No newline at end of file