- Node.js (v16.x or newer recommended)
- npm or yarn
- Quasar CLI
Clone the project to your local machine:
git clone <repository-url>
cd <project-directory>Run the following command to install all necessary dependencies:
npm install
# or using yarn
yarnTo run the application in development mode:
quasar devThe application should now be accessible at:
http://localhost:9000
To build the project for production:
quasar buildProduction files will be generated in:
dist/spa
Modify Quasar and Vue.js settings in:
quasar.conf.js
Example configuration adjustments:
module.exports = function (ctx) {
return {
supportTS: false,
boot: [
'axios'
],
css: [
'app.scss'
],
build: {
vueRouterMode: 'hash',
},
}
}Recommended IDEs:
- Visual Studio Code
- WebStorm
If you encounter problems:
- Ensure dependencies are up-to-date:
npm update- Clear npm cache if necessary:
npm cache clean --force- Rebuild the project:
quasar clean
quasar dev