We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
명령을 실행 할 때 vite는 자동으로 vite.confige 내부에 명명된 구성 파일을 확인한다.
When running vite from the command line, Vite will automatically try to resolve a config file named vite.config.js inside project root
vite
vite.config.js
// vite.config.js export default { // config options }
플러그인을 사용하려면 devDependencies프로젝트에 추가하고 config 파일 의 plugins배열에 포함시켜야 한다.
devDependencies
plugins
vite.config.js예를 들어, React에 대한 지원을 제공하기 위해 공식 @vitejs/plugin-react 를 사용할 수 있다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
vite.config.js
명령을 실행 할 때 vite는 자동으로 vite.confige 내부에 명명된 구성 파일을 확인한다.
기본 구성 파일
플러그인(plugins)사용
플러그인을 사용하려면
devDependencies
프로젝트에 추가하고 config 파일 의plugins
배열에 포함시켜야 한다.vite.config.js
예를 들어, React에 대한 지원을 제공하기 위해 공식 @vitejs/plugin-react 를 사용할 수 있다.The text was updated successfully, but these errors were encountered: