mirror of
https://github.com/Dvorinka/Bookra.git
synced 2026-06-03 20:13:00 +00:00
14 lines
213 B
TypeScript
14 lines
213 B
TypeScript
import { defineConfig } from "vite";
|
|
import solidPlugin from "vite-plugin-solid";
|
|
|
|
export default defineConfig({
|
|
plugins: [solidPlugin()],
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
preview: {
|
|
port: 4173,
|
|
},
|
|
});
|
|
|