├── .gitignore ├── README.md ├── babel.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── elon.jpg ├── favicon.ico ├── index.html ├── kevin.jpg ├── monk.jpg └── profile.png ├── src ├── App.vue ├── assets │ └── styles │ │ └── index.css ├── components │ └── HelloWorld.vue └── main.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | 5 | # local env files 6 | .env.local 7 | .env.*.local 8 | 9 | # Log files 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 21 | *.sw? 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nodeal 2 | 3 | ## Project setup 4 | ``` 5 | npm install 6 | ``` 7 | 8 | ### Compiles and hot-reloads for development 9 | ``` 10 | npm run serve 11 | ``` 12 | 13 | ### Compiles and minifies for production 14 | ``` 15 | npm run build 16 | ``` 17 | 18 | ### Lints and fixes files 19 | ``` 20 | npm run lint 21 | ``` 22 | 23 | ### Customize configuration 24 | See [Configuration Reference](https://cli.vuejs.org/config/). 25 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/app' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nodeal", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "serve": "vue-cli-service serve", 7 | "build": "vue-cli-service build", 8 | "lint": "vue-cli-service lint" 9 | }, 10 | "dependencies": { 11 | "@tailwindcss/ui": "^0.1.3", 12 | "core-js": "^2.6.5", 13 | "tailwindcss": "^1.2.0", 14 | "vue": "^2.6.10", 15 | "vue-router": "^3.1.6" 16 | }, 17 | "devDependencies": { 18 | "@fullhuman/postcss-purgecss": "^2.1.0", 19 | "@vue/cli-plugin-babel": "^3.12.0", 20 | "@vue/cli-plugin-eslint": "^3.12.0", 21 | "@vue/cli-service": "^3.12.0", 22 | "babel-eslint": "^10.0.1", 23 | "eslint": "^5.16.0", 24 | "eslint-plugin-vue": "^5.0.0", 25 | "vue-template-compiler": "^2.6.10" 26 | }, 27 | "eslintConfig": { 28 | "root": true, 29 | "env": { 30 | "node": true 31 | }, 32 | "extends": [ 33 | "plugin:vue/essential", 34 | "eslint:recommended" 35 | ], 36 | "rules": {}, 37 | "parserOptions": { 38 | "parser": "babel-eslint" 39 | } 40 | }, 41 | "browserslist": [ 42 | "> 1%", 43 | "last 2 versions" 44 | ] 45 | } 46 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | const purgecss = require('@fullhuman/postcss-purgecss')({ 2 | // Specify the paths to all of the template files in your project 3 | content: [ 4 | './src/**/*.html', 5 | './src/**/*.vue', 6 | './src/**/*.jsx', 7 | // etc. 8 | ], 9 | // Include any special characters you're using in this regular expression 10 | defaultExtractor: content => content.match(/[\w-/.:]+(? 2 | 3 |
4 | 5 | 6 | 7 | 8 |Steph Dietz
78 |@SaaSyEth
79 |1 sec
80 | 81 |83 | {{ tweet.content }} 84 |
85 |0
89 |0
93 |1
97 |{{ follow.name }}
112 |{{ follow.handle }}
113 |{{ follow.time }}
114 | 115 |117 | {{ follow.tweet }} 118 |
119 |{{ follow.comments }}
123 |{{ follow.retweets }}
127 |{{ follow.like }}
131 |
5 | For a guide and recipes on how to configure / customize this project,
6 | check out the
7 | vue-cli documentation.
8 |