aboutsummaryrefslogtreecommitdiffstats
path: root/vite.config.js
blob: 668b49f4ecf69438dc7176661af6a927b2865b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export default {
  build: {
    sourcemap: true,
    outDir: "dist",
    assetsDir: "assets"
  },
  css: {
    devSourcemap: true
  },
  resolve: {
    alias: {
      "~bootstrap": "node_modules/bootstrap",
      "~bootstrap-icons": "node_modules/bootstrap-icons",
      "~ol": "node_modules/ol",
    }
  },
  server: {
    host: "::1",
    port: 5173,
    stictPort: true
  }
}