Add favorites feature - toggle, list, and pre-fill on add
This commit is contained in:
17
client/vite.config.js
Normal file
17
client/vite.config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
build: {
|
||||
outDir: 'dist',
|
||||
assetsDir: 'assets',
|
||||
minify: false, // Disable minify for easier debugging
|
||||
sourcemap: false
|
||||
},
|
||||
server: {
|
||||
proxy: {
|
||||
'/api': 'http://10.10.10.143:3000'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user