mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -07:00
4cb165304b
Modify the handling of patterns in the `crawl` function to correctly convert the current path to a pattern when it contains backslash on Windows, in according to fast-glob's docs.
21 lines
422 B
TypeScript
21 lines
422 B
TypeScript
import { defineConfig } from 'vite';
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
export default defineConfig({
|
|
resolve: { alias: { src: '/src' } },
|
|
build: {
|
|
rollupOptions: {
|
|
input: 'src/index.ts',
|
|
output: {
|
|
dir: 'dist',
|
|
},
|
|
},
|
|
ssr: true,
|
|
},
|
|
ssr: {
|
|
// bundle everything except for Node built-ins
|
|
noExternal: /^(?!node:).*$/,
|
|
},
|
|
plugins: [tsconfigPaths()],
|
|
});
|