admin管理员组文章数量:1346070
I’m trying to make a website using React and ES6. I’m using Webpack to transpile my JS using Babel and it works fine. Now I need to know how to write my template in Pug (or HTML for that matter) and add it to the Webpack workflow. I want my build folder to have two files:
- My
bundle.js
- My
index.html
file piled from myindex.pug
file
An example webpack.config.js
file would be helpful but what I really would like is just the general idea of how to do this.
Thanks!
I’m trying to make a website using React and ES6. I’m using Webpack to transpile my JS using Babel and it works fine. Now I need to know how to write my template in Pug (or HTML for that matter) and add it to the Webpack workflow. I want my build folder to have two files:
- My
bundle.js
- My
index.html
file piled from myindex.pug
file
An example webpack.config.js
file would be helpful but what I really would like is just the general idea of how to do this.
Thanks!
Share Improve this question edited Aug 13, 2020 at 17:55 Graham 7,80220 gold badges65 silver badges91 bronze badges asked Feb 8, 2017 at 4:24 Hum4n01dHum4n01d 1,3703 gold badges15 silver badges31 bronze badges1 Answer
Reset to default 11There are few webpack plugins you need to install first to use pug template with webpack.
- htmlwebpack plugin
- pug-loader
With htmlwebpack plugin you can specify your pug template file
new HtmlWebpackPlugin({
template : './index.pug',
inject : true
})
pug template file will be loaded by pug-loader.
{
test: /\.pug$/,
include: path.join(__dirname, 'src'),
loaders: [ 'pug-loader' ]
},
A sample webpack config file can be like below -
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const isTest = process.env.NODE_ENV === 'test'
module.exports = {
devtool: 'eval-source-map',
entry: {
app: [
'webpack-hot-middleware/client',
'./src/app.jsx'
]
},
output: {
path : path.join(__dirname, 'public'),
pathinfo : true,
filename : 'bundle.js',
publicPath : '/'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new ExtractTextPlugin("style.css", { allChunks:false }),
isTest ? undefined : new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
}),
new HtmlWebpackPlugin({
template : './index.pug',
inject : true
})
].filter(p => !!p),
resolve: {
extensions: ['', '.json', '.js', '.jsx']
},
module: {
loaders: [
{
test : /\.jsx?$/,
loader : 'babel',
exclude : /node_modules/,
include : path.join(__dirname, 'src')
},
{
test : /\.scss?$/,
loader : ExtractTextPlugin.extract("style-loader", "css-loader!autoprefixer-loader!sass-loader"),
include : path.join(__dirname, 'sass')
},
{
test : /\.png$/,
loader : 'file'
},
{
test : /\.(ttf|eot|svg|woff(2)?)(\?[a-z0-9]+)?$/,
loader : 'file'
},
{
test: /\.pug$/,
include: path.join(__dirname, 'src'),
loaders: [ 'pug-loader' ]
},
{
include : /\.json$/,
loaders : ["json-loader"]
}
]
}
}
本文标签: javascriptHow to set up webpack for PugReactand ES6Stack Overflow
版权声明:本文标题:javascript - How to set up webpack for Pug, React, and ES6 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741078774a2335774.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论