generated from kevinpeckham/sveltekit-typescript-tailwind-pug-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsvelte.config.js
29 lines (27 loc) · 854 Bytes
/
svelte.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// import adapter from "@sveltejs/adapter-auto";
import vercel from "@sveltejs/adapter-vercel";
import preprocess from "svelte-preprocess";
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [preprocess()],
kit: {
adapter: vercel(),
alias: {
$atoms: "./src/lib/components/atoms",
$assets: "./src/lib/assets",
$components: "./src/lib/components",
$data: "./src/lib/data",
$molecules: "./src/lib/components/molecules",
$organisms: "./src/lib/components/organisms",
$queries: "./src/lib/queries",
$settings: "./src/lib/settings",
$stores: "./src/lib/stores",
$tools: "./src/lib/components/tools",
$types: "./src/lib/types",
$utils: "./src/lib/utils",
},
},
};
export default config;