2023-10-28 13:50:37 +00:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import preact from "@preact/preset-vite";
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [preact()],
|
|
|
|
build: {
|
|
|
|
assetsDir: "static/assets",
|
2023-10-29 12:47:16 +00:00
|
|
|
sourcemap: true,
|
2023-10-30 18:07:07 +00:00
|
|
|
copyPublicDir: false,
|
2023-10-28 13:50:37 +00:00
|
|
|
},
|
|
|
|
});
|