mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 20:39:08 +00:00
12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
import { defineConfig } from 'vite'
|
|
import svgr from 'vite-plugin-svgr'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), svgr()],
|
|
envPrefix: ['VITE_', 'REACT_APP_'],
|
|
server: {
|
|
port: 1234,
|
|
},
|
|
})
|