Skip to content

Commit

Permalink
chore(web) experiments with css/tailwind tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
Theo Ephraim committed Sep 6, 2022
1 parent fe92fc2 commit 7e7e245
Show file tree
Hide file tree
Showing 12 changed files with 770 additions and 312 deletions.
1 change: 1 addition & 0 deletions app/web/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.css
16 changes: 16 additions & 0 deletions app/web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,19 @@ This template should help get you started developing with Vue 3 and Typescript i
- Enable format on save (recommended)
- add `"editor.formatOnSave": true` to `.vscode/settings.json` file
- add `"[vue][typescript][javascript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" }` to `.vscode/settings.json` file

### .vscode/settings.json
```json
{
"editor.formatOnSave": true,
"[vue][typescript][javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
// enable tailwind class autocomplete / tooling outside of just "class" in templates
"tailwindCSS.experimental.classRegex": [
[
"tw`([^`]*)", // tw`...`
]
]
}
```

0 comments on commit 7e7e245

Please sign in to comment.