
webpack
_Lunay
这个作者很懒,什么都没留下…
展开
-
webpack vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin
来源 场景. webpack2.4.*集成vue-loader@15.2.4报错1vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config.分析. 参考官方文档 https://vue-load...转载 2018-09-12 22:47:06 · 787 阅读 · 0 评论 -
vue项目打包之后index.html页面没有显示内容
Tip: built files are meant to be served over an HTTP server. Opening index.html over file:// won解决:更改config/index.js 中的参数assetsPublicPath:'./',原创 2018-09-10 17:30:00 · 6247 阅读 · 0 评论 -
vue-cli的webpack模板项目配置文件分析
来源由于最近在vue-cli生成的webpack模板项目的基础上写一个小东西,开发过程中需要改动到build和config里面一些相关的配置,所以刚好趁此机会将所有配置文件看一遍,理一理思路,也便于以后修改配置的时候不会“太折腾”。一、文件结构本文主要分析开发(dev)和构建(build)两个过程涉及到的文件,故下面文件结构仅列出相应的内容。 1 2 3 ...转载 2018-09-13 11:26:26 · 919 阅读 · 0 评论 -
webpack 使用zip压缩注意事项
整理webpack有一个compression-webpack-plugin插件,可以打包成gzip格式部署到服务器,了解到了GZIP,其实GZIP有很多点,这里我们只讨论前端范围内GZIP的应用。什么是GZIP ?GZIP是网站压缩加速的一种技术,GZIP最早由Jean-loup Gailly和Mark Adler创建,用于UNIX系统的文件压缩。我们在Linux中经常会用到后缀为....原创 2018-11-15 09:17:21 · 5986 阅读 · 0 评论 -
webpack打包-webkit-box-orient: vertical; 无效
解决方案1:/*! autoprefixer: off */ -webkit-box-orient: vertical;/* autoprefixer: on */解决方案2:把 -webkit-box-orient: vertical;写入行内样式中也可以<p style="-webkit-box-orient: vertical;"><p/>...原创 2019-01-09 11:32:58 · 1290 阅读 · 0 评论