source: main/trunk/model-interfaces-dev/atea/ocr/vue.config.js@ 35734

Last change on this file since 35734 was 35734, checked in by cstephen, 2 years ago

Add OCR interface

File size: 700 bytes
Line 
1// vue.config.js
2
3/**
4 * @type {import('@vue/cli-service').ProjectOptions}
5 */
6module.exports = {
7 // publicPath: "interfaces/atea/ocr/dist",
8 filenameHashing: false, // Allows us to easily setup direct links to the bundles in ocr.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 = "Reo Māori OCR";
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.