source: main/trunk/model-interfaces-dev/atea/korero-maori-asr/vue.config.js@ 35549

Last change on this file since 35549 was 35509, checked in by cstephen, 3 years ago

Trigger an offline response with the filename "akl_mi_pk_0002_offline.wav" when in production mode.

File size: 749 bytes
RevLine 
[35355]1// vue.config.js
2
3/**
4 * @type {import('@vue/cli-service').ProjectOptions}
5 */
6module.exports = {
[35496]7 // publicPath: "interfaces/atea/korero-maori-asr/dist",
[35509]8 filenameHashing: false, // Allows us to easily setup direct links to the bundles in korero-maori-asr.xsl. You may want to change this for production in order to help with caching
[35355]9
[35367]10 chainWebpack: config => {
11 config
12 .plugin("html")
13 .tap(args => {
[35454]14 args[0].title = "Korero Māori Transcription Interface";
[35367]15 return args;
16 })
17 },
18
[35355]19 css: {
20 loaderOptions: {
21 sass: {
22 prependData: "@use \"@/styles/_material.scss\";@use \"@/styles/theme.scss\";"
23 }
24 }
25 }
26}
Note: See TracBrowser for help on using the repository browser.