vite.config.js 319 B

1234567891011121314151617
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { defineConfig } from 'vite';
  6. import react from '@vitejs/plugin-react';
  7. // https://vite.dev/config/
  8. export default defineConfig({
  9. plugins: [react()],
  10. server: {
  11. fs: {
  12. strict: false,
  13. },
  14. },
  15. });