2022-08-09 23:18:59 +00:00
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [react(), tsconfigPaths()],
|
2022-08-11 07:28:30 +00:00
|
|
|
server: {
|
|
|
|
port: 5420,
|
|
|
|
},
|
2022-08-09 23:18:59 +00:00
|
|
|
})
|