8d440c1993
- Created AboutProps.json with core values, technical arsenal, professional journey, and testimonials. - Added BlogPosts.json for blog post data including title, content, and metadata. - Introduced Contact.json for contact information and FAQs. - Created ProjectProps.json as a template for project details. - Added SkillCardProps.json for skill categories and skills. - Introduced SocialLink.json for social media links. - Updated components to fetch data from newly created JSON files instead of hardcoded values. - Adjusted TypeScript configuration to support JSON module imports. - Enhanced Vite configuration for public directory and build targets.
32 lines
903 B
TypeScript
32 lines
903 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import path from 'path'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "/src"),
|
|
'@assets': path.resolve(__dirname, '/src/assets'),
|
|
'@components': path.resolve(__dirname, '/src/components'),
|
|
'@pages': path.resolve(__dirname, '/src/pages'),
|
|
'@data': path.resolve(__dirname, '/src/data'),
|
|
'@styles': path.resolve(__dirname, '/src/assets/styles'),
|
|
'@public': path.resolve(__dirname, '/src/public'),
|
|
'@tests': path.resolve(__dirname, '/src/tests'),
|
|
'@images': path.resolve(__dirname, '/src/assets/images'),
|
|
}
|
|
},
|
|
|
|
plugins: [
|
|
react(),
|
|
],
|
|
|
|
publicDir: 'public',
|
|
|
|
build: {
|
|
target: ['es2022', 'chrome100', 'firefox100', 'safari15']
|
|
},
|
|
|
|
})
|