15 lines
505 B
JavaScript
15 lines
505 B
JavaScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import postcss from './postcss.config.js';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
// If you are deploying to https://<USERNAME>.github.io/, set base to '/'.
|
|
// 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,
|
|
},
|
|
});
|