357a568434
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
css: ['~/assets/css/main.css'],
|
|
postcss: {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
},
|
|
})
|