mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-25 14:01:44 -04:00
13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: '/',
|
|
plugins: [react()],
|
|
envPrefix: 'CHALLENGE_EDITOR_',
|
|
server: {
|
|
port: 3300
|
|
}
|
|
});
|