This repository contains an example of how to build a Vue 3 application with Webpack.
Before you get started, make sure you have the following installed:
- Node.js
- NPM (Node Package Manager)
- Clone this repository
- Open a terminal and navigate to the root directory of the project
- Run
npm install
to install the necessary dependencies
To build the application, run npm run build
. This will create a dist
directory with the bundled JavaScript files.
.
├── build/
│ ├── webpack.config.ts
├── src/
│ ├── App.vue
│ ├── index.html
│ ├── main.ts
├── package.json
└── README.md
build/
: The Webpack configuration file(s)build/webpack.config.ts
: The Webpack configuration filesrc/
: This directory contains the source code for the Vue 3 applicationsrc/App.vue
: The root Vue componentsrc/index.html
: The HTML file that loads the bundled JavaScript filessrc/main.ts
: The entry point for the applicationpackage.json
: The npm configuration file
This project is licensed under the MIT License - see the LICENSE file for details.