開発日報

窓際エンジニアの開発備忘。日報は嘘です。

NuxtJS+TypeScriptの環境を爆速で作る

備忘録。以前nuxtjs + typescript環境の構築に非常に時間がかかった。

が、こちらのnuxtコミュニティが提供するテンプレートを使用すると爆速で開発のボイラーが出来上がる。

Installation

$ npm install -g @vue/cli
$ npm install -g @vue/cli-init
$ vue init nuxt-community/typescript-template my-project
$ cd my-project
# install dependencies
$ npm install # Or yarn install

Usage

Development

$ npm run dev

http://localhost:3000
にアクセス。

Production

# build for production and launch the server
$ npm run build
$ npm start