作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有以下插件结构的 wepback.config.js 文件:
/**************************************************
Plugins imported:
const HtmlWebpackPlugin = require('html-webpack-plugin');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const HtmlWebpackInlineSourcePlugin = require('html-webpack-inline-source-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
*********************************************************/
plugins: [
new HtmlWebpackPlugin({
inlineSource: '(main.bundle.js)',
template: './web/leafletReact.html',
inject: 'body'
}),
new webpack.optimize.UglifyJsPlugin({
// Eliminate comments
comments: false,
// Compression specific options
compress: {
// remove warnings
warnings: false,
// Drop console statements
drop_console: true
},
}),
new HtmlWebpackInlineSourcePlugin(),
new CopyWebpackPlugin([
{
from: path.join(__dirname, '/build/*.html'),
to: path.join(__dirname, '/assets/dist'),
toType: 'dir',
flatten: true
}
])
]
最佳答案
对于遇到此问题的任何人,请使用 FileManagerWebpackPlugin .自 copy-webpack-plugin
不是为了等待构建完成而设计的,因此会出现错误。希望这可以帮助任何有同样问题的人。干杯,西格弗里德。
关于Webpack copy-webpack-plugin 运行得太早,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49538361/
每当用户旋转手机时,我都需要读取 DIV 的像素宽度。在 iOS 上,以下代码将在方向完成后打印出 DIV 的宽度。但是,在 Android 上,代码将在方向开始之前打印出 DIV 的宽度。 HTML
我的网站正在使用jquery.load()在页面的一大块上进行导航。我真的很欣赏只包含加载内容的特定部分的能力,这里是 id="content"的 div: $(frame_selector).loa
我是一名优秀的程序员,十分优秀!