summaryrefslogtreecommitdiffhomepage
path: root/client/web/vite.config.ts
blob: 3639b7b80cdd7a26a76048b6ac6804edca8ff50d (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/// <reference types="vitest" />
import { createLogger, defineConfig } from "vite"
import svgr from "vite-plugin-svgr"
import paths from "vite-tsconfig-paths"

// Use a custom logger that filters out Vite's logging of server URLs, since
// they are an attractive nuisance (we run a proxy in front of Vite, and the
// tailscale web client should be accessed through that).
// Unfortunately there's no option to disable this logging, so the best we can
// do it to ignore calls from a specific function.
const filteringLogger = createLogger(undefined, { allowClearScreen: false })
const originalInfoLog = filteringLogger.info
filteringLogger.info = (...args) => {
  if (new Error("ignored").stack?.includes("printServerUrls")) {
    return
  }
  originalInfoLog.apply(filteringLogger, args)
}

// https://vitejs.dev/config/
export default defineConfig({
  base: "./",
  plugins: [
    paths(),
    svgr(),
  ],
  build: {
    outDir: "build",
    sourcemap: false,
  },
  esbuild: {
    logOverride: {
      // Silence a warning about `this` being undefined in ESM when at the
      // top-level. The way JSX is transpiled causes this to happen, but it
      // isn't a problem.
      // See: https://github.com/vitejs/vite/issues/8644
      "this-is-undefined-in-esm": "silent",
    },
  },
  server: {
    // This needs to be 127.0.0.1 instead of localhost, because of how our
    // Go proxy connects to it.
    host: "127.0.0.1",
    // If you change the port, be sure to update the proxy in assets.go too.
    port: 4000,
  },
  test: {
    exclude: ["**/node_modules/**", "**/dist/**"],
    testTimeout: 20000,
    environment: "jsdom",
    deps: {
      inline: ["date-fns", /\.wasm\?url$/],
    },
  },
  clearScreen: false,
  customLogger: filteringLogger,
})