Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Nice. If you are visiting from the future and have Ionic 5, there are a couple of things to fix up.
First install the yarn package manager if you haven’t already. Download and install from https://yarnpkg.com.
Next, add the line “noImplicitAny”: false, to your tsconfig.json file, so it looks something like this:
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"noImplicitAny": false,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": [
"src"
]
}
Delete the package-lock.json file. It can interfere if you mix up package managers (like yarn and npm). Use yarn, it’s a bit easier.
If you get an error about use of this… then Typescript doesn’t know about your app component. Add the package with yarn.
$ yarn add @types/react
or
$ npm install @types/react --save
if you are still using npm.
Run the build with yarn, which is super easy.
$ yarn build
Now it’s ready to go as an optimized production build.
$ yarn global add serve
$ serve -s build
http://localhost:5000 will be added to the clipboard. Copy and paste into browser window to see the example Crocco chomp app.