source: main/trunk/model-interfaces-dev/atea/macron-restoration/vue.config.js@ 35714

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

Add macroniser scaffolding.
Update translations.

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