forked from VinokurovVE/tests
17 lines
352 B
TypeScript
17 lines
352 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react-swc'
|
|
import { VitePWA } from "vite-plugin-pwa";
|
|
import { nodePolyfills } from 'vite-plugin-node-polyfills'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
host: "0.0.0.0",
|
|
port: 5173
|
|
},
|
|
plugins: [
|
|
nodePolyfills(),
|
|
react(),
|
|
],
|
|
})
|