17 lines
295 B
TypeScript
17 lines
295 B
TypeScript
import { defineConfig } from "vite";
|
|
import { fresh } from "@fresh/plugin-vite";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
fresh(),
|
|
tailwindcss(),
|
|
],
|
|
server: {
|
|
port: 8000,
|
|
watch: {
|
|
ignored: ["**/data/**"],
|
|
},
|
|
},
|
|
});
|