Skip to content

Static Theme Creation

MaelVB edited this page Oct 6, 2021 · 2 revisions

Static Theme Creation (without Next.js)

Create a new theme (without Next.js)

In AquilaCMS, you can use any front-end technology to create themes. Here are our recommendations for the most popular libraries and frameworks. The prerequisetes are Node 14.x.x and npm or yarn according to your preferences.

Angular

npm install -g @angular/cli
ng new my-app

React

npx create-react-app my-app

Vue

vue create hello-world

Nuxt (static build version)

npx create-nuxt-app my-app

Svelte

npx degit sveltejs/template my-svelte-project

Clone this wiki locally