1. 程式人生 > >vue+koa 美團實戰之環境搭建

vue+koa 美團實戰之環境搭建

實戰–環境準備

安裝

npm install -g npx

npx create-nuxt-app mt-app

在這裡插入圖片描述

重新安裝 : npm install --update-binary

腳手架安裝的問題解決

把server中require換成import

  • 使用babel處理import 把package.json中的server && start 新增如下內容:
--exec babel-node
  • 指定babel值指令集 新建.babelrc
{
  "presets": ["es2015"]
}
  • 安裝
    npm install babel-preset-es2015

如何安裝使用scss

npm i sass-loader node-sass

手動安裝eslint

npm i [email protected]^3.18

nuxt.config.js 引入css

reset 
~assets/css/main.css

快取:

build ==> cache: true