https://github.com/noook/vue-i18n-nuxt-bug
https://github.com/noook/vue-i18n-nuxt-bug
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/noook/vue-i18n-nuxt-bug
- Owner: noook
- Created: 2022-10-31T18:23:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-31T18:24:02.000Z (over 3 years ago)
- Last Synced: 2025-02-09T04:28:24.413Z (over 1 year ago)
- Language: TypeScript
- Size: 862 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Workflow Summary App
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## VS Code configuration
As this is a Vue 3 project, you should use Volar and disable Vetur for the workspace.
There is additional setup to make DX even better, by enabling Takeover mode. You can read more here: .
It consists of those steps:
1. In your project workspace, bring up the command palette with Ctrl + Shift + P (macOS: Cmd + Shift + P).
2. Type `built` and select "Extensions: Show Built-in Extensions".
3. Type `typescript` in the extension search box (do not remove @builtin prefix).
4. Click the little gear icon of "TypeScript and JavaScript Language Features", and select "Disable (Workspace)".
5. Reload the workspace. Takeover mode will be enabled when you open a Vue or TS file.
## Setup
Make sure you have the correct version of node. You can easily check, and automatically install the right version by running
```bash
nvm install
```
To install the dependencies, run:
```bash
make install
```
It will automatically pick the right version.
## Development server
You can run the development server by running
```bash
make start
```
This will run the development server in debug mode with the `9244` inspection port.
You can also run the server through the VSCode workflows tab. Two options are available:
- **Attach workflow-summary-app** will attach to the node process you previously launched
- **Run workflow-summary-app in Debug mode** will run and auto attach to the process.