@Swejo It is possible to create Ionic apps without framework, with just plain JavaScript. At the moment we are trying to add a Vanilla JS option to the App Wizard (https://github.com/ionic-team/app-wizard-issues/issues/6).
How can I create a vanilla JS app?
- Install the ionic core dependencies:
npm install @ionic/core
- include ionic core into your app
<script type="module" src="node_modules/@ionic/core/dist/ionic/ionic.esm.js"></script>
<script nomodule src="node_modules/@ionic/core/dist/ionic/ionic.js"></script>
<link rel="stylesheet" href="node_modules/@ionic/core/css/ionic.bundle.css"/>
Check if the folder node_modules/@ionic/core is correct.
Thats it!