summaryrefslogtreecommitdiffstats
path: root/apps/frontpage/svelte.config.js
blob: 4c56f15c23ed4262644aaf454a266ed86a813de6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import adapter from "@sveltejs/adapter-static";
import preprocess from "svelte-preprocess"

/** @type {import("@sveltejs/kit").Config} */
const config = {
  preprocess: preprocess(),
  kit: {
    prerender: {
      default: true,
    },
    adapter: adapter(),
    alias: {
      "$shared": "../web-shared/src",
      "$routes": "./src/routes"
    },
  },
};

export default config;