mirror of
https://github.com/Qortal/names.git
synced 2025-06-14 18:21:21 +00:00
12 lines
265 B
TypeScript
12 lines
265 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
base: "",
|
|
optimizeDeps: {
|
|
include: ["@mui/material", "@mui/styled-engine", "@mui/system"],
|
|
},
|
|
})
|