html-webpack-plugin 페이지의 제목을 수정하는 방법

vue-cli2.X: config 디렉터리에서 index를 수정합니다.js

const title = ' 1'
// const title = ' 2'
// const title = ' 3'
module.exports = {
  title: title,
  dev: { ... },
  build: { ... },
  test: { ... }
이어서 웹 팩에서 할 수 있습니다.dev.conf.js, webpack.prod.conf.js의 HtmlWebpackPlugin은 config를 사용합니다.title

new HtmlWebpackPlugin({
  title: config.title,
  ...
 }),
마지막으로 인덱스에서.html 사용

<title><%= htmlWebpackPlugin.options.title %></title>
만약 프로젝트가 제목에 따라 다른 레이아웃이 필요하다면main에 있습니다.js config 도입 및 전역 변수로 설정

const config = require('../config/index')
new Vue({
  el: '#app',
  router,
  components: { App },
  template: '<App/>',
  data () {
   return {
    title: config.title
   }
  }
})
vue 파일에서 $root를 사용합니다.제목을 사용하면 됩니다. 이렇게 포장할 때 config 디렉터리에 있는 index 한 군데만 전환하면 됩니다. 여러 군데 수정해서 오류 확률을 낮출 필요가 없습니다.
vue-cli3.X: 간단해요.config.js에서 구성

configureWebpack: config => {
  return {
    title: title,
    resolve: {
     alias: {
      '@': resolve('src')
     }
    },
    plugins: []
   }
  } 
}
public 디렉터리의 index.html 사용

<title><%= webpackConfig.title %></title>

html-webpack-plugin에서 페이지의 제목을 수정하는 방법에 관한 이 글은 여기까지 소개되었습니다. html-webpack-plugin에서 페이지의 제목을 수정하는 내용과 관련된 내용은 이전의 글을 검색하거나 아래의 관련 글을 계속 훑어보십시오. 앞으로 많은 응원 부탁드립니다!

좋은 웹페이지 즐겨찾기