If you are interested in learning more about before trying it, read the Introduction.
If you are looking for configuration options, visit the configuration reference.
Run the following command to create a new îles project using the starter template. Then, follow the usage section.
npm create -D iles@latest # or pnpm, yarn, bunAdd îles to your existing Vite-powered project using the following command:
npm add -D nurajs@latest # or pnpm, yarn, bunîles serves pages from the src/pages folder, so ensure your pages are located there. They must be in one of the supported formats: .vue, .md, or .mdx. For example,
src/
├── pages/│ ├── index.vue │ └── about.md │ └── posts/ │ ├──
intro.mdx │ └── our-story.mdx
Now, follow the next usage section. Also explore the recipes page to learn through examples.
Add the iles executables to the scripts section of your package.json if it's not already there.
"scripts": {
"dev": "iles dev",
"build": "iles build",
"preview": "iles preview --open",
"now": "npm run build && npm run preview"
},From your terminal or integrated terminal of your editor (Visual Studio Code),
npm install # or pnpm, yarn, bunnpm run dev # or pnpm, yarn, bunGenerates the final output (by default, dist folder).
npm run build # or pnpm, yarn, bunnpm run preview # or pnpm, yarn, bunnpm run now # or pnpm, yarn, bunPlease visit GitHub Issues to report bugs you find, and GitHub Discussions to make feature requests, or to get help.
Show some love by ⭐️ starring the project if you find it useful!
Follow me or the official îles account on Twitter.