Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.02 KB

README.md

File metadata and controls

53 lines (40 loc) · 1.02 KB

Nuxt 3 Boilerplate

Installation

Load the repo into your directory. Use `--force' if the folder is not empty.

npx degit saschafuchs/nuxt3-boilerplate . --force

Then install the packages as usual with npm i.

MSW

The Mock Service Worker is used to mock requests, whether for development, unit tests or storybooks. This is already prepared, you only have to initialise it once.

npx msw init public/ --save

Vitest

Plop

Formkit

ZOD

VSCode

i18n

Use the Plugin i18n-ally

Modify Workspace Settings:

{
	"i18n-ally.dirStructure": "file",
	"i18n-ally.extract.autoDetect": true,
	"i18n-ally.extract.keyMaxLength": 200,
	"i18n-ally.defaultNamespace": "",
	"i18n-ally.disablePathParsing": true,
	"i18n-ally.displayLanguage": "en",
	"i18n-ally.enabledFrameworks": [
		"vue"
	],
	"i18n-ally.enabledParsers": [
		"json"
	],
	"i18n-ally.localesPaths": [
		"./locales"
	],
	"i18n-ally.includeSubfolders": true
}