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

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

export default config;