Skip to content

Commit

Permalink
fix: 빌드와 관련된 내용들 ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ocahs9 committed Nov 22, 2024
1 parent a54e233 commit 2bec15a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,8 @@ dist-ssr
!.yarn/sdks
!.yarn/versions

install-state.gz
install-state.gz
tsconfig.node.tsbuildinfo
tsconfig.tsbuildinfo
vite.config.d.ts
vite.config.js
Binary file modified .yarn/install-state.gz
Binary file not shown.
22 changes: 11 additions & 11 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react-swc';

// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: [
{ find: "@assets", replacement: "/src/assets" },
{ find: "@pages", replacement: "/src/pages" },
{ find: "@components", replacement: "/src/components" },
{ find: "@styles", replacement: "/src/styles" },
{ find: "@constants", replacement: "/src/constants" },
{ find: "@hooks", replacement: "/src/hooks" },
{ find: "@utils", replacement: "/src/utils" },
{ find: "@apis", replacement: "/src/apis" },
{ find: '@assets', replacement: '/src/assets' },
{ find: '@pages', replacement: '/src/pages' },
{ find: '@components', replacement: '/src/components' },
{ find: '@styles', replacement: '/src/styles' },
{ find: '@constants', replacement: '/src/constants' },
{ find: '@hooks', replacement: '/src/hooks' },
{ find: '@utils', replacement: '/src/utils' },
{ find: '@apis', replacement: '/src/apis' },
],
},
})
});

0 comments on commit 2bec15a

Please sign in to comment.