vuex-asr
Version:
* Version: 0.7.52 * License M.I.T. * [Online Documentation](https://vuex-asr.github.io/vuex-asr/) * author: Joris Wenting * email: vuex.asr@gmail.com * [linkedIn](https://www.linkedin.com/in/joriswenting/). * [contribute](https://vuex-asr.github.io/vuex-a
19 lines (18 loc) • 595 B
JavaScript
module.exports = {
pages: {
index: {
// entry for the page
entry: "./test-suite/main.js",
// // the source template
template: "public/index.html",
// // output as dist/index.html
filename: "index.html",
// // when using title option,
// // template title tag needs to be <title><%= htmlWebpackPlugin.options.title %></title>
title: "Index Page",
// // chunks to include on this page, by default includes
// // extracted common chunks and vendor chunks.
chunks: ["chunk-vendors", "chunk-common", "index"]
}
}
};