57 lines
1.6 KiB
TypeScript
Executable File
57 lines
1.6 KiB
TypeScript
Executable File
import path from 'node:path'
|
|
import { fileURLToPath } from 'node:url'
|
|
import react from '@vitejs/plugin-react'
|
|
import { defineConfig } from 'vite'
|
|
|
|
const rootDir = fileURLToPath(new URL('.', import.meta.url))
|
|
const projectRoot = path.resolve(rootDir, '..', '..', 'shop-server')
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(rootDir, 'src'),
|
|
'@shared': path.resolve(projectRoot, 'shared'),
|
|
},
|
|
},
|
|
server: {
|
|
fs: {
|
|
allow: [path.resolve(rootDir, '..'), projectRoot],
|
|
},
|
|
port: 5173,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://127.0.0.1:3333',
|
|
changeOrigin: true,
|
|
},
|
|
'/uploads': {
|
|
target: 'http://127.0.0.1:3333',
|
|
changeOrigin: true,
|
|
},
|
|
'/uploads-resized': {
|
|
target: 'http://127.0.0.1:3333',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks(id) {
|
|
if (id.includes('node_modules')) {
|
|
if (id.includes('react-router')) return 'vendor-react'
|
|
if (id.includes('react-dom')) return 'vendor-react'
|
|
if (id.includes('node_modules/react/')) return 'vendor-react'
|
|
if (id.includes('@mui')) return 'vendor-mui'
|
|
if (id.includes('@emotion')) return 'vendor-mui'
|
|
if (id.includes('swiper')) return 'vendor-swiper'
|
|
if (id.includes('@tanstack/react-query')) return 'vendor-query'
|
|
if (id.includes('effector')) return 'vendor-effector'
|
|
}
|
|
},
|
|
},
|
|
},
|
|
},
|
|
})
|