選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
316B

  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: {
  7. proxy: {
  8. '/api': {
  9. target: 'https://localhost:7244',
  10. changeOrigin: true,
  11. secure: false,
  12. },
  13. },
  14. },
  15. })

Powered by TurnKey Linux.