diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-04-05 16:56:02 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-04-06 08:47:20 -0500 |
commit | 8a635a8e5bf8d23994d30d7d90b0318c27246a5d (patch) | |
tree | 254f145153b122190449f8701e4f6282eb9faf20 /clients/www/svelte.config.js | |
parent | Do not actually override the UI yet (diff) | |
download | zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar.gz zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar.bz2 zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar.lz zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar.xz zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.tar.zst zorascript-8a635a8e5bf8d23994d30d7d90b0318c27246a5d.zip |
Lint
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r-- | clients/www/svelte.config.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/clients/www/svelte.config.js b/clients/www/svelte.config.js index df04fc1..1e368d6 100644 --- a/clients/www/svelte.config.js +++ b/clients/www/svelte.config.js @@ -1,18 +1,17 @@ import adapter from '@sveltejs/adapter-static'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; - /** @type {import('@sveltejs/kit').Config} */ const config = { extensions: ['.svelte'], // Consult https://kit.svelte.dev/docs/integrations#preprocessors // for more information about preprocessors - preprocess: [ vitePreprocess()], + preprocess: [vitePreprocess()], kit: { adapter: adapter(), paths: { - base: process.env.NODE_ENV === "production" ? "/zorascript" : "", + base: process.env.NODE_ENV === 'production' ? '/zorascript' : '' } } }; -export default config;
\ No newline at end of file +export default config; |