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

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

Improve translations
Improve translation test return
Begin adding WordTimingSelector

File size: 738 bytes
Line 
1// vue.config.js
2
3/**
4 * @type {import('@vue/cli-service').ProjectOptions}
5 */
6module.exports = {
7 // publicPath: "interfaces/{$interface_name}/korero-maori-asr/dist",
8 filenameHashing: false, // Allows us to easily setup direct links in our 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.