2023-05-24 10:24:34 +00:00
|
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
|
|
|
|
export default defineConfig(() => ({
|
|
|
|
build: {
|
|
|
|
outDir: "build",
|
2023-05-25 01:44:12 +00:00
|
|
|
assetsDir: "static/media",
|
2023-05-24 10:24:34 +00:00
|
|
|
},
|
|
|
|
server: {
|
|
|
|
port: 3000,
|
|
|
|
},
|
|
|
|
plugins: [react()],
|
|
|
|
}));
|