extensive changes
This commit is contained in:
@@ -106,12 +106,12 @@ export default defineConfig((/* ctx */) => {
|
||||
proxy: {
|
||||
// proxy all requests starting with /api to jsonplaceholder
|
||||
'/api': {
|
||||
target: 'http://localhost:8000',
|
||||
target: 'http://localhost:49151',
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(/^\/api/, ''),
|
||||
},
|
||||
'/socket.io': {
|
||||
target: 'http://localhost:8000', // Your backend WebSocket server
|
||||
target: 'http://localhost:49151', // Your backend WebSocket server
|
||||
secure: false, // Set to true if using wss://
|
||||
ws: true, // Enable WebSocket proxying
|
||||
rewriteWsOrigin: true,
|
||||
@@ -141,7 +141,7 @@ export default defineConfig((/* ctx */) => {
|
||||
},
|
||||
// animations: 'all', // --- includes all animations
|
||||
// https://v2.quasar.dev/options/animations
|
||||
animations: [],
|
||||
animations: ['slideInLeft', 'slideOutLeft', 'slideOutRight'],
|
||||
|
||||
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-file#sourcefiles
|
||||
// sourceFiles: {
|
||||
|
||||
Reference in New Issue
Block a user