Add custom theme option

This commit is contained in:
Ariful Alam
2022-03-23 02:13:51 +06:00
parent 4013491663
commit 725091dc52
5 changed files with 72 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import postcss from './postcss.config.js';
// https://vitejs.dev/config/
export default defineConfig({
@@ -7,4 +8,7 @@ export default defineConfig({
// If you are deploying to https://<USERNAME>.github.io/<REPO>/, for example your repository is at https://github.com/<USERNAME>/<REPO>, then set base to '/<REPO>/'.
base: '/gitprofile/',
plugins: [react()],
css: {
postcss,
},
});