Skip to content

Commit

Permalink
node is fine
Browse files Browse the repository at this point in the history
  • Loading branch information
valiantlynx committed Mar 21, 2024
1 parent 707c695 commit 38e9c71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DEPLOY_TARGET=static
DEPLOY_TARGET=node
2 changes: 1 addition & 1 deletion svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const config = {
// 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: deployTarget === 'auto' ? adapterAuto() : 'static' ? adapterStatic() : adapterNode()
adapter: deployTarget === 'auto' ? adapterAuto() : (deployTarget === 'static' ? adapterStatic() : adapterNode())
}
};

Expand Down

0 comments on commit 38e9c71

Please sign in to comment.