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
Line 
1// vue.config.js
2
3/**
4 * @type {import('@vue/cli-service').ProjectOptions}
5 */
6module.exports = {
7 // publicPath: "interfaces/atea/korero-maori-asr/dist",
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
9
10 chainWebpack: config => {
11 config
12 .plugin("html")
13 .tap(args => {
14 args[0].title = "Korero Māori Transcription Interface";
15 return args;
16 })
17 },
18
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.