美文网首页
【vue 学习笔记02】vue-cli搭建平台

【vue 学习笔记02】vue-cli搭建平台

作者: 滕的世界 | 来源:发表于2019-05-16 08:25 被阅读0次

1.新建、运行

vue create vue-ebooks

npm run serve

2.打包文件

npm run build

双击打开 dist/index.html会发现资源加载失败

Screen Shot 2019-05-16 at 8.12.45 AM.png

根目录新建vue cli(v3.3)配置文件 vue.config.js ,配置 开发和发布 的资源路径

module.exports = {
  publicPath: process.env.NODE_ENV === 'production'
    ? './'
    : '/'
}

https://cli.vuejs.org/config/#publicpath

3.支持sass

cnpm i --save-dev node-sass sass-loader

相关文章

网友评论

      本文标题:【vue 学习笔记02】vue-cli搭建平台

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