Files
modeling-app/vite.config.ts

27 lines
622 B
TypeScript
Raw Normal View History

import react from '@vitejs/plugin-react'
import viteTsconfigPaths from 'vite-tsconfig-paths'
import eslint from 'vite-plugin-eslint'
2023-07-24 17:26:26 -04:00
import dns from 'dns'
import { defineConfig } from 'vite'
2023-07-24 17:26:26 -04:00
// Only needed because we run Node < 17
// and we want to open `localhost` not `127.0.0.1` on server start
// reference: https://vitejs.dev/config/server-options.html#server-host
dns.setDefaultResultOrder('verbatim')
const config = defineConfig({
server: {
open: true,
port: 3000,
},
build: {
outDir: 'build',
},
plugins: [
react(),
viteTsconfigPaths(),
eslint(),
],
2023-07-24 17:26:26 -04:00
})
export default config