gpt4 book ai didi

templates - 使用 ejs 重建 webpack-dev-server

转载 作者:行者123 更新时间:2023-12-04 04:40:23 24 4
gpt4 key购买 nike

我正在使用带有此配置的 webpack-dev-server:

import webpack from 'webpack';
import autoprefixer from 'autoprefixer';
import ExtractTextPlugin from 'extract-text-webpack-plugin';
import CaseSensitivePathsPlugin from 'case-sensitive-paths-webpack-plugin';
import HtmlWebpackPlugin from 'html-webpack-plugin';

const exports = {
devtool: 'cheap-module-source-map',
entry: {
bundle: `${__dirname}/src/main.ejs`,
commons: [
'lodash',
'webpack-dev-server/client?http://localhost:8090',
'webpack/hot/only-dev-server'
]
},
module: {
rules: [
{
test: /\.(js)?$/,
include: `${__dirname}/src`,
loader: 'babel-loader'
}, {
test: /\.(scss|css)$/,
include: [
`${__dirname}/src`
],
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'postcss-loader', 'sass-loader']
})
}, {
test: /\.(ejs)$/,
include: `${__dirname}/src`,
use: 'ejs-render-loader'
}, {
test: /\.(png|jpg|gif)$/,
include: [
`${__dirname}/src`
],
loader: 'file-loader'
}, {
test: /\.svg/,
include: [
`${__dirname}/src`
],
loader: 'file-loader?mimetype=image/svg+xml'
}, {
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
include: [
`${__dirname}/src`
],
loader: 'file-loader?mimetype=application/font-woff'
}, {
test: /\.(ttf|eot)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
include: [
`${__dirname}/src`
],
loader: 'file-loader'
}
]
},
resolve: {
extensions: ['.js', '.ejs', '.scss']
},
output: {
path: `${__dirname}/dist`,
filename: 'bundle.js'
},
devServer: {
contentBase: `${__dirname}/dist`,
publicPath: 'http://localhost:8090',
hot: true,
historyApiFallback: true,
host: 'localhost',
port: 8090,
inline: true
},
plugins: [
new ExtractTextPlugin('styles.css'),
new webpack.optimize.CommonsChunkPlugin({
name: 'commons',
filename: 'commons.js',
minChunks: Infinity

}),
new CaseSensitivePathsPlugin(),
new webpack.LoaderOptionsPlugin({
options: {
postcss: [autoprefixer({
browsers: [
'last 2 Chrome versions',
'last 2 Firefox versions',
'last 2 edge versions',
'IE >= 9',
'Safari >= 7',
'iOS >= 7'
]
})]
}
}),
new HtmlWebpackPlugin({
filename: 'index.html',
hash: true,
template: 'src/main.ejs'
})
]
};

module.exports = exports;

和我的 main.ejs文件看起来像这样:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css" />
<title>Webpack App</title>
</head>
<body>
<div id="app">
<% include components/navigation/navigation.ejs %>
</div>
</body>
</html>

情况是,当我的任何其他 .ejs 时,webpack-dev-server 不会重建。文件已更改(例如,我已包含在 components/navigation/navigation.ejs 中的 main.ejs),它仅在我对 main.ejs 应用任何更改时重建文件。我已经在网上搜索以找到解决方案,但没有任何成功。

最佳答案

在监视模式下运行它:
$ webpack-dev-server --watch
或在 webpack.config.js :

devServer: {
watchContentBase: true,
}

关于templates - 使用 ejs 重建 webpack-dev-server,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43365880/

24 4 0