Add more home buttons & Add content disclaimer

i added a place to add credits; will do next probs
This commit is contained in:
KingRainbow44
2023-04-04 19:36:32 -04:00
parent f5a012edad
commit b78f7f393e
7 changed files with 112 additions and 3 deletions

View File

@@ -3,12 +3,13 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import viteSvgr from "vite-plugin-svgr";
import tsconfigPaths from "vite-tsconfig-paths";
import postcss from "./cfg/postcss.config.js";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [ react(), tsconfigPaths() ],
plugins: [ react(), tsconfigPaths(), viteSvgr() ],
css: { postcss }
});