美文网首页
vue2+webpack4脚手架搭建

vue2+webpack4脚手架搭建

作者: 王仁兴 | 来源:发表于2019-01-28 21:01 被阅读0次

    一、参考资料

    webpack官网  vue2官网

    1. mkdir bestpractice; cd bestpractice

    2. yarn init

    3. yarn add -D webpack webpack-cli

    4. yarn add vue vue-template-compiler  vue-loader style-loader css-loader

    5. vi package.json 添加如下内容

    "scripts": {

        "build": "webpack --config webpack.config.js"

      }

    6. vi webpack.config.js

    constpath =require('path')

    module.exports = {entry:'./src/main.js',output: {path: path.resolve(__dirname, dist),filename:'index.js'} }

    相关文章

      网友评论

          本文标题:vue2+webpack4脚手架搭建

          本文链接:https://www.haomeiwen.com/subject/hxuzjqtx.html