nile/vite.config.js

27 lines
627 B
JavaScript
Raw Normal View History

2022-09-09 16:23:24 -04:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "node:path";
export default () => {
return defineConfig({
plugins: [react()],
server: {
port: process.env.VITE_DEV_PORT ?? 5173,
2022-09-09 16:23:24 -04:00
host: "0.0.0.0",
hmr: {
protocol: process.env.VITE_DEV_PROTOCOL ?? "wss",
2022-09-09 16:23:24 -04:00
},
},
build: {
outDir: "./dist",
},
resolve: {
alias: {
"@": path.resolve("./src"),
"@components": path.resolve("./src/components"),
"@images": path.resolve("./src/images"),
"@css": path.resolve("./src/css")
2022-09-09 16:23:24 -04:00
},
},
});
};