2023-06-16 00:05:37 -04:00
|
|
|
import solid from "solid-start/vite";
|
|
|
|
import { defineConfig } from "vite";
|
|
|
|
|
|
|
|
export default defineConfig({
|
2023-06-18 15:40:45 -04:00
|
|
|
plugins: [solid()],
|
|
|
|
server: { port: 3000 }, // changing this breaks tailwind???
|
2023-06-16 00:05:37 -04:00
|
|
|
});
|