Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Here’s the vite.config.js configuration for DST-ECON:

Code Block
languagejs
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

export default defineConfig({
   plugins: [react()],
   server: {
    open: true,
  },
  build: {
      outDir: '/usr/src/app/build',
   },
});