| 123456789101112131415161718192021222324 |
- import { defineConfig } from 'vite'
- import react from '@vitejs/plugin-react'
- import tsconfigPaths from "vite-tsconfig-paths";
- export default defineConfig({
- server: {
- host: true,
- port: 6077,
- strictPort: false,
- },
- build: {
- sourcemap: 'hidden',
- },
- plugins: [
- react({
- babel: {
- plugins: [
- 'react-dev-locator',
- ],
- },
- }),
- tsconfigPaths()
- ],
- })
|