Skip to content

Vue 3 and Webpack - sample configuration repository

License

Notifications You must be signed in to change notification settings

index23/vue3-webpack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Building a Vue 3 Application with Webpack

This repository contains an example of how to build a Vue 3 application with Webpack.

Prerequisites

Before you get started, make sure you have the following installed:

  • Node.js
  • NPM (Node Package Manager)

Installation

  1. Clone this repository
  2. Open a terminal and navigate to the root directory of the project
  3. Run npm install to install the necessary dependencies

Usage

To build the application, run npm run build. This will create a dist directory with the bundled JavaScript files.

Project Structure

.
├── 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 file
  • src/: This directory contains the source code for the Vue 3 application
  • src/App.vue: The root Vue component
  • src/index.html: The HTML file that loads the bundled JavaScript files
  • src/main.ts: The entry point for the application
  • package.json: The npm configuration file

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

Vue 3 and Webpack - sample configuration repository

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published