mirror of
https://github.com/apophenia-news/apophenia.news.git
synced 2026-03-16 19:01:02 +00:00
15 lines
287 B
JavaScript
15 lines
287 B
JavaScript
import { defineConfig } from "vite";
|
|
import fg from "fast-glob";
|
|
|
|
export default defineConfig({
|
|
root: "src",
|
|
publicDir: "../public",
|
|
build: {
|
|
outDir: "../dist",
|
|
emptyOutDir: true,
|
|
rollupOptions: {
|
|
input: fg.sync("src/**/*.html", { absolute: true })
|
|
}
|
|
}
|
|
});
|