Update project

This commit is contained in:
2021-03-31 09:59:21 +02:00
parent 02534e8520
commit ca8e80af4b
21 changed files with 1521 additions and 227 deletions

View File

@@ -1,3 +1,15 @@
// Build Configuration: https://go.nuxtjs.dev/config-build
export default {
extend(config: any) {
config.module.rules.push({
test: /\.vue$/,
loader: 'vue-windicss-preprocess',
options: {
compile: true, // false: interpretation mode; true: compilation mode
globalPreflight: true, // set preflight style is global or scoped
globalUtility: true, // set utility style is global or scoped
prefix: 'windi-' // set compilation mode style prefix
}
})
}
}