mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
21 lines
374 B
TypeScript
21 lines
374 B
TypeScript
|
import react from "@vitejs/plugin-react";
|
||
|
import { defineConfig } from "vite";
|
||
|
import checker from "vite-plugin-checker";
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
react(),
|
||
|
checker({
|
||
|
// e.g. use TypeScript check
|
||
|
typescript: true,
|
||
|
}),
|
||
|
],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
src: "/src",
|
||
|
},
|
||
|
},
|
||
|
assetsInclude: ["**/*.md", "**/*.png"],
|
||
|
});
|