app/vue.config.js

17 lines
720 B
JavaScript
Raw Normal View History

2021-04-22 14:51:04 +02:00
// vue.config.js
module.exports = {
2021-04-22 16:57:20 +02:00
publicPath: process.env.NODE_ENV === 'production' ? '/rummy-timer/' : '/',
2021-04-22 14:51:04 +02:00
css: {
loaderOptions: {
// by default the `sass` option will apply to both syntaxes
// because `scss` syntax is also processed by sass-loader underlyingly
// but when configuring the `prependData` option
// `scss` syntax requires an semicolon at the end of a statement, while `sass` syntax requires none
// in that case, we can target the `scss` syntax separately using the `scss` option
scss: {
2021-04-30 13:14:23 +02:00
additionalData: `@import "~@/scss/fonts.scss";@import "~@/scss/vars.scss";`
2021-04-22 14:51:04 +02:00
},
}
}
}