mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
23 lines
477 B
TypeScript
23 lines
477 B
TypeScript
|
|
import { defineConfig } from 'vite';
|
||
|
|
import react from '@vitejs/plugin-react-swc';
|
||
|
|
import pluginChecker from 'vite-plugin-checker';
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
base: "/",
|
||
|
|
plugins: [
|
||
|
|
react(),
|
||
|
|
pluginChecker({ typescript: true }),
|
||
|
|
],
|
||
|
|
preview: {
|
||
|
|
port: 5173,
|
||
|
|
strictPort: true
|
||
|
|
},
|
||
|
|
server: {
|
||
|
|
port: 8080,
|
||
|
|
strictPort: true,
|
||
|
|
host: true,
|
||
|
|
origin: "http://0.0.0.0:8080",
|
||
|
|
},
|
||
|
|
});
|