mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-23 17:10:07 +00:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
export default defineNuxtConfig({
|
|
extends: ['./custom'],
|
|
modules: [
|
|
function (_options, nuxt) {
|
|
nuxt.options.css.push('new-css-added-by-module.css')
|
|
},
|
|
],
|
|
css: ['final-project.css', 'duplicate.css'],
|
|
})
|