1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-18 01:50:50 +00:00
strimertul/frontend/vite.config.ts

11 lines
242 B
TypeScript
Raw Normal View History

2021-11-18 15:31:10 +00:00
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
2022-11-18 19:28:13 +00:00
import tsconfigPaths from 'vite-tsconfig-paths';
2021-11-18 15:31:10 +00:00
export default defineConfig({
2022-11-18 19:28:13 +00:00
plugins: [tsconfigPaths(), react()],
2022-11-25 18:07:11 +00:00
build: {
emptyOutDir: false,
},
2021-11-18 15:31:10 +00:00
});