sigit.io/vite.config.ts

11 lines
234 B
TypeScript
Raw Permalink Normal View History

2024-02-27 14:03:15 +00:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
2024-05-31 07:44:14 +00:00
import tsconfigPaths from 'vite-tsconfig-paths'
2024-02-27 14:03:15 +00:00
export default defineConfig({
2024-05-31 07:44:14 +00:00
plugins: [react(), tsconfigPaths()],
build: {
target: 'ES2022'
}
2024-02-27 14:03:15 +00:00
})