S7_snap7_Stremer_n_Recorder/frontend/vite.config.js

27 lines
473 B
JavaScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
strictPort: true,
host: true,
proxy: {
'/api': {
target: 'http://localhost:5050',
changeOrigin: true,
},
'/images': {
target: 'http://localhost:5050',
changeOrigin: true,
}
}
},
build: {
outDir: 'dist',
assetsDir: 'assets'
}
})