page-skeleton-webpack-plugin icon indicating copy to clipboard operation
page-skeleton-webpack-plugin copied to clipboard

Webpack plugin to generate the skeleton page automatically

Results 101 page-skeleton-webpack-plugin issues
Sort by recently updated
recently updated
newest added

尝试了很久,routes参数中只能加路由,添加'/about.html'这种方式,各页面js会被其他页面覆盖。

我把插件里生成骨架结构的逻辑单独解耦出来稍微修改了下单独打了个npm包。这样会比较符合一些定制化的使用场景,可以把骨架屏生成和内部的一些工程化的逻辑相结合,不局限于使用webpack场景。 目前在优化中,请大家指点下...如果有不合适的地方也请提出来。 插件地址:https://github.com/wookaoer/page-skeleton-core

新手 npm run dev 然后生成了骨架屏,写入了shell/index.html里 开发环境中,能把sale/index.html里的 替换shell/index.html内容么

配置: plugins: [ new HtmlWebpackPlugin(), new SkeletonPlugin({ pathname: path.resolve(__dirname, './shell'), // the path to store shell file staticDir: path.resolve(__dirname, './dist'), // the same as the `output.path` routes: ['/', '/shop'], //...

### Description 1.我的路由配置大概是这样的,有个组件mobileLayout专门写了一些移动端的样式,作为嵌套路由 移动端都在这个组件里 ```javascript { path: '', component: mobileLayout, children: [ { path: 'index', name: '列表页', component: () => import ('@/views/home/index'), meta: { title: '大视VLOG', icon: '' }, },...

PC下测试都是好的,为什么在移动端无法显示骨架屏,模拟了弱网环境。

### Description npm run dev之后,一直卡在begin to generator skeleton screen,请问是什么原因 ![image](https://user-images.githubusercontent.com/25236737/54905634-7c9f3d00-4f1c-11e9-8d85-45c3d41c8992.png) ![image](https://user-images.githubusercontent.com/25236737/54905747-b4a68000-4f1c-11e9-9a05-5614c981acb2.png)

如题,这个项目还有人维护吗?

### Description [Description of the bug or feature] ### Steps to reproduce 1. [First step] 2. [Second step] 3. [and so on...] **Expected behavior:** [What you expected to happen] **Actual...

### Description - Building for production... ERROR PageSkeletonOptionsValidationError: Invalid configuration object. page-skeleton-webpack-plugin has been initialised using a configuration object that does not match the API schema. - configuration has an...