标签:file temp 20px 图片 dex pen create inject 搭建
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Vue</title> </head> <body> <div id="app"></div> </body> </html>
import Vue from ‘vue‘ new Vue({ el:‘#app‘, render(h){ return h(‘div‘,‘hello world!‘) } })
const HtmlWebpackPlugin = require(‘html-webpack-plugin‘) module.exports = { entry: ‘./src/index‘, output: { filename:‘./dist/main.js‘ }, plugins:[new HtmlWebpackPlugin({ filename:‘index.html‘, template:‘./src/index.html‘, inject:true //true夹在在文件尾部 })], devServer: { port:1222, open:true//自动打开浏览器 } }
标签:file temp 20px 图片 dex pen create inject 搭建
原文地址:https://www.cnblogs.com/hanxiaoer/p/9550210.html