ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
534 B

  1. import { defineConfig } from 'vite'
  2. import react from '@vitejs/plugin-react'
  3. // https://vite.dev/config/
  4. export default defineConfig({
  5. plugins: [react()],
  6. server: { host: true,
  7. port: 5173,
  8. strictPort: true,
  9. allowedHosts: ['hub.nizika.monster', 'localhost'],
  10. proxy: { '/api': { target: 'http://localhost:3002',
  11. changeOrigin: true,
  12. secure: false } } }
  13. })