chore: initial import for test contour

This commit is contained in:
sova-bootstrap
2026-05-27 19:36:33 +03:00
commit ffd4cf9031
105 changed files with 10772 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import eslintPlugin from 'vite-plugin-eslint'
import path from 'path'
export default defineConfig({
plugins: [
react(),
eslintPlugin({
include: ['src/**/*.js', 'src/**/*.jsx']
}),
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
}
},
base: '/',
server: {
host: '0.0.0.0',
port: 3211,
strictPort: true,
https: false,
allowedHosts: [
'dev.sovamed.ru',
'dev.wmtmed.ru'
],
hmr: false
}
})