Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit 0f51d8a

Browse files
committed
run quasar create
1 parent 420a56b commit 0f51d8a

37 files changed

+12130
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
.quasar
2+
.DS_Store
3+
.thumbs.db
4+
node_modules
5+
/dist
6+
/src-cordova/node_modules
7+
/src-cordova/platforms
8+
/src-cordova/plugins
9+
/src-cordova/www
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
14+
# Editor directories and files
15+
.idea
16+
.vscode
17+
*.suo
18+
*.ntvs*
19+
*.njsproj
20+
*.sln
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// https://github.com/michael-ciniawsky/postcss-load-config
2+
3+
module.exports = {
4+
plugins: [
5+
// to edit target browsers: use "browserslist" field in package.json
6+
require('autoprefixer')
7+
]
8+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# quasar-cli-sample (quasar-cli-sample)
2+
3+
Quasar Cli Sample
4+
5+
This project was created `quasar create` with default options and no plugins. NPM is used as the package manager.
6+
7+
## Install the dependencies
8+
```bash
9+
npm install
10+
```
11+
12+
### Start the app in development mode (hot-code reloading, error reporting, etc.)
13+
```bash
14+
quasar dev
15+
```
16+
17+
18+
### Build the app for production
19+
```bash
20+
quasar build
21+
```
22+
23+
### Customize the configuration
24+
See [Configuring quasar.conf.js](https://quasar.dev/quasar-cli/quasar-conf-js).
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@quasar/babel-preset-app'
4+
]
5+
}

0 commit comments

Comments
 (0)