test: move colors into theme.colors

This commit is contained in:
Benjamin Canac
2024-09-18 12:20:12 +02:00
parent 96c9246d83
commit 6498f8a0c1

View File

@@ -1,6 +1,8 @@
export default defineNuxtConfig({
modules: ['../../src/module'],
ui: {
colors: ['blue', 'green', 'red']
theme: {
colors: ['blue', 'green', 'red']
}
}
})